/* ==========================================
   SEA LION SERVICES — Modern Luxury Design
   ========================================== */

/* --- Design Tokens --- */
:root {
    /* Deep maritime palette */
    --bg-night: #0a1628;
    --bg-deep: #081020;
    --bg-navy: #132842;
    --bg-soft: #f8fafc;
    --bg-sand: #fef8f0;
    --bg-white: #ffffff;

    /* Accents */
    --accent: #22d3ee;              /* Ocean cyan */
    --accent-hover: #06b6d4;
    --accent-deep: #0891b2;
    --accent-glow: rgba(34, 211, 238, 0.28);
    --accent-soft: rgba(34, 211, 238, 0.08);
    --gold: #f4c260;
    --gold-soft: rgba(244, 194, 96, 0.15);

    /* Text */
    --text-dark: #0a1628;
    --text-body: #4b5563;
    --text-muted: #9ca3af;
    --text-white: #ffffff;

    /* Borders */
    --border-light: rgba(10, 22, 40, 0.06);
    --border-medium: rgba(10, 22, 40, 0.1);
    --border-dark: rgba(255, 255, 255, 0.08);
    --glass: rgba(10, 22, 40, 0.65);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.04);
    --shadow-md: 0 4px 24px rgba(10, 22, 40, 0.06), 0 1px 4px rgba(10, 22, 40, 0.03);
    --shadow-lg: 0 20px 48px rgba(10, 22, 40, 0.12), 0 4px 12px rgba(10, 22, 40, 0.05);
    --shadow-xl: 0 32px 72px rgba(10, 22, 40, 0.18), 0 8px 24px rgba(10, 22, 40, 0.08);
    --shadow-accent: 0 20px 48px rgba(34, 211, 238, 0.25);

    /* Radii */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Typography */
    --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lora', Georgia, 'Times New Roman', serif;

    /* Motion */
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    /* Gradients */
    --gradient-accent: linear-gradient(135deg, #67e8f9 0%, #22d3ee 50%, #0891b2 100%);
    --gradient-sunset: linear-gradient(135deg, #f4c260 0%, #f97316 60%, #c2410c 100%);
    --gradient-night: linear-gradient(180deg, #0a1628 0%, #132842 100%);
}

/* --- Film-grain noise texture for dark sections --- */
.section-dark,
.cta-section,
.tour-mapsection-dark,
.hero {
    position: relative;
}
.section-dark::after,
.cta-section::after,
.hero-overlay::after {
    content: '';
    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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.06;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}
.section-dark > *, .cta-section > * { position: relative; z-index: 2; }

/* --- Glassier sticky nav --- */
.site-header.scrolled {
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    background: rgba(10, 22, 40, 0.62);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.32);
}

/* --- Wave divider (curved section bottoms) --- */
.wave-bottom {
    position: relative;
    z-index: 3;
    margin-top: -1px;
    line-height: 0;
}
.wave-bottom svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* --- Sliding arrow on CTA button hover --- */
.btn-primary i.ri-arrow-right-line,
.btn-outline i.ri-arrow-right-line,
.tour-card-cta i.ri-arrow-right-line {
    transition: transform 0.35s var(--ease-out);
    will-change: transform;
}
.btn-primary:hover i.ri-arrow-right-line,
.btn-outline:hover i.ri-arrow-right-line {
    transform: translateX(6px);
}

/* --- Map view toggle (real 3D via MapLibre) --- */
.map-view-toggle {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1000;
    display: inline-flex;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 3px;
    box-shadow: 0 6px 20px rgba(10, 22, 40, 0.3);
}
.map-view-toggle button {
    padding: 6px 14px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.map-view-toggle button.active {
    background: var(--gradient-accent);
    color: var(--bg-night);
    box-shadow: 0 4px 12px rgba(34, 211, 238, 0.4);
}
.tour-detail-map-wrap { position: relative; }

/* --- Page loader --- */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #0a1628 0%, #132842 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.page-loader-mark {
    width: 64px;
    height: 64px;
    color: #22d3ee;
    animation: loaderRock 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.page-loader-text {
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    animation: loaderFade 1.6s ease-in-out infinite;
}
@keyframes loaderRock {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}
@keyframes loaderFade {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* --- Base / Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-white);
    color: var(--text-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--bg-night); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin: 0;
}

a { text-decoration: none; color: inherit; transition: color var(--transition), opacity var(--transition); }
ul, ol { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 1em 0; }
p:last-child { margin-bottom: 0; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: var(--radius-full); border: 2px solid #f1f5f9; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 28px; }
.text-center { text-align: center; }

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

.site-header.scrolled {
    padding: 14px 0;
    background: var(--glass);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

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

.header-logo {
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: transparent;
    box-shadow: none;
    color: var(--text-white);
    transition: opacity var(--transition);
}

.header-logo:hover {
    opacity: 0.85;
    transform: translateY(-1px);
    color: var(--text-white);
}

/* Logo PNG — white version, prominent on dark backgrounds */
.header-logo-img {
    height: 130px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
    transition: height 0.3s ease;
}
.site-header.scrolled .header-logo-img {
    height: 90px;
}

.header-logo-mark {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--bg-night);
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px var(--accent-glow);
}

.header-logo-mark i { font-size: 1.2rem; }

.header-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.header-logo-text .line-1 { font-size: 1.1rem; letter-spacing: 0.06em; text-transform: uppercase; }
.header-logo-text .line-2 { font-size: 0.72rem; color: var(--accent); letter-spacing: 0.2em; text-transform: uppercase; font-family: var(--font-sans); font-weight: 500; margin-top: 2px; }

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

.header-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    letter-spacing: 0.04em;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 36px);
    height: 1px;
    background: var(--accent);
    transition: transform var(--transition);
    transform-origin: center;
}

.header-nav a:hover, .header-nav a.active { color: var(--text-white); }
.header-nav a.active { color: var(--accent); }
.header-nav a.active::after, .header-nav a:hover::after { transform: translateX(-50%) scaleX(1); }

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

.lang-switch {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
}

.lang-btn {
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
    cursor: pointer;
}

.lang-btn.active { background: var(--accent); color: var(--bg-night); }
.lang-btn:not(.active):hover { color: var(--text-white); }

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-white);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all var(--transition);
}

.header-cta:hover {
    background: var(--accent);
    color: var(--bg-night);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    z-index: 1002;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.hamburger:hover { background: rgba(255, 255, 255, 0.08); }

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

.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); }

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at top, var(--bg-navy), var(--bg-night) 60%, var(--bg-deep));
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
    padding: 60px 20px;
}

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

/* NOTE: το mobile drawer (links/cta/contact/footer) στυλάρεται πλήρως
   στο responsive.css. Δεν βάζουμε γενικό `.mobile-nav a` εδώ γιατί
   διέρρεε στα contact items και τα έσπαγε. */

.mobile-nav-cta {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient-accent);
    color: var(--bg-night);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    font-family: var(--font-sans);
}

/* ========================================
   HERO (cinematic)
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-night);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 2s ease-in-out;
    will-change: transform, opacity;
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurns 10s ease-out forwards;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
    pointer-events: none;
    will-change: opacity;
}

.hero-video.active { opacity: 1; }
/* Smooth crossfade at loop boundary */
.hero-video.active.looping {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(34, 211, 238, 0.14), transparent 55%),
        linear-gradient(180deg,
            rgba(10, 22, 40, 0.3) 0%,
            rgba(10, 22, 40, 0.45) 40%,
            rgba(10, 22, 40, 0.75) 100%);
    z-index: 2;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    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)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 100px 28px 120px;
    color: var(--text-white);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--accent);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-eyebrow::before, .hero-eyebrow::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 400;
    color: var(--text-white);
    letter-spacing: 0.01em;
    line-height: 1.02;
    margin-bottom: 32px;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.hero h1 .accent-word {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}

.hero-desc {
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
    margin: 0 auto 48px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.hero-meta-item { display: flex; align-items: center; gap: 8px; }
.hero-meta-item i { color: var(--accent); font-size: 1rem; }

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    overflow: hidden;
    isolation: isolate;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--bg-night);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.5), transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.8s ease;
    z-index: 1;
}

.btn-primary > * { position: relative; z-index: 2; }

.btn-primary:hover {
    color: var(--bg-night);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px var(--accent-glow);
}

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

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: var(--text-white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--text-white);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollDot 2.4s var(--ease-out) infinite;
}

@keyframes scrollDot { 0% { top: -20px; } 100% { top: 52px; } }

/* ========================================
   PAGE HERO (subpages)
   ======================================== */
.page-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-night);
    overflow: hidden;
    text-align: center;
    padding: 180px 0 120px;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(34, 211, 238, 0.18), transparent 55%),
        linear-gradient(180deg,
            rgba(10, 22, 40, 0.4) 0%,
            rgba(10, 22, 40, 0.7) 50%,
            var(--bg-night) 100%);
    z-index: 2;
    pointer-events: none;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.8s ease-in-out;
}

.page-hero-bg.active {
    opacity: 0.6;
    animation: kenBurnsSlow 12s ease-out forwards;
}

@keyframes kenBurnsSlow { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }

.page-hero .container { position: relative; z-index: 3; }

.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.page-hero-eyebrow::before, .page-hero-eyebrow::after {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--accent);
}

.page-hero h1 {
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 400;
    color: var(--text-white);
    letter-spacing: 0.005em;
    line-height: 1;
    margin-bottom: 28px;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.page-hero h1 .accent-word { font-style: italic; color: var(--accent); font-weight: 500; }

.page-hero-rule {
    width: 64px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto 28px;
    opacity: 0.7;
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 300;
}

/* ========================================
   SECTIONS
   ======================================== */
.section { padding: 120px 0; position: relative; }

.section-dark {
    background: var(--gradient-night);
    color: rgba(255, 255, 255, 0.82);
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.08), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.section-dark .container { position: relative; z-index: 1; }
.section-alt { background: var(--bg-soft); }

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-deep);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-eyebrow::before, .section-eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent-deep);
}

.section-dark .section-eyebrow { color: var(--accent); }
.section-dark .section-eyebrow::before, .section-dark .section-eyebrow::after { background: var(--accent); }

.section-header h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.section-header h2 .accent-word { font-style: italic; color: var(--accent-deep); }
.section-dark .section-header h2 { color: var(--text-white); }
.section-dark .section-header h2 .accent-word { color: var(--accent); }

.section-header p {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.section-dark .section-header p { color: rgba(255, 255, 255, 0.58); }

/* Intro */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.intro-text h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 28px;
}

.intro-text h2 .accent-word { font-style: italic; color: var(--accent-deep); }

.intro-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 20px;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

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

.intro-feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-deep);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.intro-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    color: var(--text-dark);
    margin-bottom: 4px;
    letter-spacing: 0;
}

.intro-feature p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.intro-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-xl);
}

.intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80%;
    height: 80%;
    background: var(--accent-soft);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.intro-image img { width: 100%; height: 100%; object-fit: cover; }

/* Intro gallery collage */
.intro-gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
}

.intro-gallery::before {
    content: '';
    position: absolute;
    top: -24px;
    right: -24px;
    width: 70%;
    height: 70%;
    background: var(--accent-soft);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.intro-gallery-main {
    position: absolute;
    inset: 0;
    width: 82%;
    height: 82%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    z-index: 1;
    transition: transform 0.6s var(--ease-out);
}

.intro-gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.intro-gallery-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(10, 22, 40, 0.28);
    border: 6px solid var(--bg-white);
    z-index: 2;
    transition: transform 0.6s var(--ease-out);
}

.intro-gallery-float img { width: 100%; height: 100%; object-fit: cover; }

.intro-gallery-badge {
    position: absolute;
    top: 32px;
    left: 32px;
    background: var(--bg-night);
    color: var(--text-white);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    z-index: 3;
    box-shadow: 0 18px 36px rgba(10, 22, 40, 0.3);
    border: 1px solid rgba(34, 211, 238, 0.25);
}

.intro-gallery-badge-num {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-weight: 500;
    line-height: 1;
    color: var(--accent);
    letter-spacing: -0.01em;
}

.intro-gallery-badge-text {
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 4px;
}

.intro-gallery:hover .intro-gallery-main { transform: translate(-4px, -4px); }
.intro-gallery:hover .intro-gallery-float { transform: translate(6px, 6px); }

/* Experience video showcase */
.experience-section {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-soft) 100%);
}

.experience-video-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(10, 22, 40, 0.28), 0 8px 24px rgba(10, 22, 40, 0.12);
    background: #0a1628;
    isolation: isolate;
}

.experience-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.experience-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10, 22, 40, 0) 0%,
        rgba(10, 22, 40, 0) 70%,
        rgba(10, 22, 40, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.experience-video-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(10, 22, 40, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.experience-video-badge i {
    color: #ef4444;
    font-size: 0.85rem;
    animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Tour detail pages — back link */
.tour-detail-back {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 24px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.tour-detail-back:hover {
    background: var(--accent);
    color: var(--bg-night);
    border-color: var(--accent);
}

.tour-detail-meta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.86rem;
    letter-spacing: 0.06em;
}
.tour-detail-meta span { display: inline-flex; align-items: center; gap: 8px; }
.tour-detail-meta i { color: var(--accent); font-size: 1.05rem; }

/* ==========================================
   Tour detail — premium redesign
   ========================================== */

/* Stats bar */
.tour-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: -80px auto 0;
    max-width: 920px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 32px 80px rgba(10, 22, 40, 0.18);
    position: relative;
    z-index: 5;
    overflow: hidden;
    border: 1px solid var(--border-light);
}
.tour-stat {
    padding: 32px 22px;
    text-align: center;
    border-right: 1px solid var(--border-light);
    transition: background var(--transition);
}
.tour-stat:last-child { border-right: none; }
.tour-stat:hover { background: var(--accent-soft); }

.tour-stat-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.tour-stat-value {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -0.01em;
}
.tour-stat-label {
    margin-top: 8px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Map + itinerary side-by-side */
.tour-detail-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: stretch;
    margin-top: 160px;
}

.tour-detail-map-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
}
.tour-detail-map-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-deep);
}
.tour-detail-map-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-deep), transparent);
}

.tour-detail-map {
    width: 100%;
    flex: 1;
    min-height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #1a2942;
    position: relative;
    border: 8px solid var(--bg-white);
    outline: 1px solid var(--border-light);
}

/* Itinerary — vertical timeline */
.tour-detail-stops .section-eyebrow {
    color: var(--accent-deep);
    margin-bottom: 12px;
}
.tour-detail-stops h2 {
    font-size: clamp(1.7rem, 2.6vw, 2.1rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 8px 0 10px;
    letter-spacing: -0.005em;
    color: var(--text-dark);
}
.tour-detail-stops .tour-detail-intro {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-body);
    margin: 0 0 22px;
}

.tour-stops-list {
    list-style: none;
    margin: 0;
    padding: 4px 0 4px 28px;
    position: relative;
}
.tour-stops-list::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    background: linear-gradient(180deg,
        transparent 0%,
        var(--accent-deep) 6%,
        var(--accent-deep) 94%,
        transparent 100%);
    opacity: 0.35;
}

.tour-stop-item {
    position: relative;
    display: block;
    margin-bottom: 4px;
    padding: 10px 14px 12px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}
.tour-stop-item:last-child { margin-bottom: 0; }

.tour-stop-num {
    position: absolute;
    left: -28px;
    top: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-night);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: 3px solid var(--bg-soft);
    transition: all 0.3s var(--ease-out);
    z-index: 2;
}

.tour-stop-item:hover {
    border-color: var(--accent-deep);
    background: var(--accent-soft);
    transform: translateX(4px);
}
.tour-stop-item.active {
    border-color: var(--accent-deep);
    background: linear-gradient(135deg, var(--accent-soft), var(--bg-white));
    box-shadow: 0 6px 16px -8px var(--accent-glow);
}
.tour-stop-item.active .tour-stop-num {
    background: var(--gradient-accent);
    color: var(--bg-night);
    border-color: var(--bg-white);
    box-shadow: 0 4px 12px var(--accent-glow);
}

.tour-stop-content {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 10px;
}

.tour-stop-time {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-deep);
    background: var(--accent-soft);
    padding: 2px 8px;
    border-radius: 999px;
    flex-shrink: 0;
}

.tour-stop-content h3 {
    font-family: var(--font-serif);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: var(--text-dark);
    letter-spacing: -0.005em;
}
.tour-stop-content p {
    font-size: 0.84rem;
    line-height: 1.5;
    color: var(--text-body);
    margin: 2px 0 0;
    flex-basis: 100%;
}

/* What's included section */
.tour-included {
    background: var(--bg-soft);
    padding: 100px 0;
    margin-top: 40px;
}
.tour-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1080px;
    margin: 0 auto;
}
.tour-included-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}
.tour-included-item:hover {
    border-color: var(--accent-deep);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.tour-included-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: var(--gradient-accent);
    color: var(--bg-night);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}
.tour-included-text h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--text-dark);
}
.tour-included-text p {
    font-size: 0.86rem;
    color: var(--text-body);
    line-height: 1.5;
    margin: 0;
}

/* MapLibre marker — numbered pin */
.tour-marker-pin {
    width: 27px;
    height: 27px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 4px 12px rgba(10, 22, 40, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    cursor: pointer;
    transition: transform 0.25s var(--ease-out);
}
.tour-marker-pin:hover { transform: rotate(-45deg) scale(1.15); z-index: 5; }
.tour-marker-pin span {
    transform: rotate(45deg);
    color: #0a1628;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.6rem;
    letter-spacing: 0.02em;
}

/* MapLibre popup — premium card */
.tour-popup-wrap .maplibregl-popup-content {
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(10, 22, 40, 0.28);
    width: 180px;
}
.tour-popup-wrap .maplibregl-popup-tip { box-shadow: 0 6px 12px rgba(10, 22, 40, 0.18); }
.tour-popup-wrap .maplibregl-popup-close-button {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    color: #0a1628 !important;
    font-size: 18px !important;
    line-height: 22px !important;
    text-align: center;
    top: 8px !important;
    right: 8px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 2;
    padding: 0;
}

/* MapLibre native controls styling */
.tour-detail-map .maplibregl-ctrl-attrib { display: none; }
.tour-detail-map .maplibregl-ctrl-bottom-right { padding: 8px; }
.tour-detail-map .maplibregl-ctrl-group {
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
.tour-detail-map .maplibregl-ctrl-group button {
    background: transparent;
    color: #fff;
}
.tour-detail-map .maplibregl-ctrl-group button:hover { background: rgba(255, 255, 255, 0.08); }
.tour-detail-map .maplibregl-ctrl-group button .maplibregl-ctrl-icon {
    filter: invert(1);
}

.tour-popup { font-family: var(--font-sans); }
.tour-popup-img {
    width: 100%;
    height: 90px;
    overflow: hidden;
    background: #0a1628;
    position: relative;
}
.tour-popup-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 22, 40, 0.2) 100%);
}
.tour-popup-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.tour-popup-wrap:hover .tour-popup-img img { transform: scale(1.04); }
.tour-popup-body { padding: 10px 12px 12px; }
.tour-popup-body strong {
    display: block;
    color: #0a1628;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 3px;
}
.tour-popup-body p { margin: 0; font-size: 0.75rem; line-height: 1.45; color: #4b5563; }

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

.tour-card {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    isolation: isolate;
}

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

.tour-card-image { position: relative; height: 480px; overflow: hidden; }

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease-out);
}

.tour-card:hover .tour-card-image img { transform: scale(1.08); }

.tour-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.85), rgba(10, 22, 40, 0.2) 50%, transparent);
    z-index: 1;
}

.tour-card-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(34, 211, 238, 0.5);
    border-radius: var(--radius-full);
    color: var(--text-white);
    font-size: 0.7rem;
    box-shadow: 0 4px 14px rgba(10, 22, 40, 0.3);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.tour-card-tag i { color: var(--accent); }

.tour-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px 26px;
    z-index: 2;
    color: var(--text-white);
}

.tour-card-body h3 {
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.tour-card-body p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 18px;
}

.tour-card-meta {
    display: flex;
    gap: 18px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.tour-card-meta span { display: flex; align-items: center; gap: 6px; }
.tour-card-meta i { color: var(--accent); }

/* Explicit "View tour →" CTA pill */
.tour-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 11px 20px;
    background: var(--gradient-accent);
    color: var(--bg-night);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(34, 211, 238, 0.35);
    transition: all 0.35s var(--ease-out);
    align-self: flex-start;
}
.tour-card-cta i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}
.tour-card:hover .tour-card-cta {
    box-shadow: 0 14px 32px rgba(34, 211, 238, 0.5);
    transform: translateX(2px);
}
.tour-card:hover .tour-card-cta i { transform: translateX(4px); }

/* Stronger hover for the whole card */
.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(10, 22, 40, 0.25), 0 0 0 2px var(--accent);
}

/* Single "Book Now" CTA below the tours grid */
.tours-book {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}
.tours-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 56px;
    background: var(--gradient-accent);
    color: var(--bg-night);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 14px 36px rgba(34, 211, 238, 0.4);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.tours-book-btn i { font-size: 1.2rem; }
.tours-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(34, 211, 238, 0.55);
}

/* Gallery preview mosaic */
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.gallery-preview-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform var(--transition);
}

.gallery-preview-item:nth-child(1) { grid-row: span 2; }
.gallery-preview-item:nth-child(4) { grid-row: span 2; }

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.gallery-preview-item:hover img { transform: scale(1.08); }

.gallery-preview-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    mix-blend-mode: overlay;
}

.gallery-preview-item:hover::after { opacity: 1; }

/* Full gallery grid */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.gallery-item img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.3rem;
    opacity: 0;
    transition: all var(--transition);
    z-index: 2;
    pointer-events: none;
}

.gallery-item:hover .gallery-item-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.96);
    backdrop-filter: blur(16px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.open { display: flex; }

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all var(--transition);
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background: var(--accent);
    color: var(--bg-night);
    border-color: var(--accent);
}

.lightbox-close { top: 32px; right: 32px; }
.lightbox-prev { left: 32px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 32px; top: 50%; transform: translateY(-50%); }

/* Specs (boat page) — editorial row */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    padding: 56px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-card {
    position: relative;
    padding: 24px 32px;
    text-align: center;
    transition: background var(--transition);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-card:last-child { border-right: none; }

.spec-card:hover {
    background: rgba(34, 211, 238, 0.04);
}

.spec-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent);
    font-size: 1.15rem;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.spec-card:hover .spec-icon { opacity: 1; }

.spec-value {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 500;
    color: var(--text-white);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    font-style: italic;
}

.spec-unit {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.spec-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
}

/* Features split */
.features-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-list { display: flex; flex-direction: column; gap: 22px; }

.features-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
    transition: transform var(--transition), box-shadow var(--transition);
}

.features-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }

.features-item-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    color: var(--accent-deep);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.features-item h4 {
    font-family: var(--font-sans);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: 0;
}

.features-item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

.features-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-xl);
}

.features-image img { width: 100%; height: 100%; object-fit: cover; }

.features-image .boat-showcase-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.features-image .boat-showcase-slide.active { opacity: 1; }

/* ===== Boat page — Showcase ===== */
.boat-showcase {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
}

.boat-showcase-media {
    position: relative;
    aspect-ratio: 4 / 5;
    min-height: 360px;
}

.boat-showcase-main {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.boat-showcase-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.boat-showcase-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.boat-showcase-slide.active {
    opacity: 1;
}

.boat-showcase-main { position: relative; }
.boat-showcase-float { position: absolute; }

.boat-showcase-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    background: rgba(10, 37, 64, 0.85);
    color: #fff;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.boat-showcase-tag i { color: var(--accent); font-size: 0.95rem; }

.boat-showcase-float {
    position: absolute;
    right: -28px;
    bottom: -36px;
    width: 46%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 24px 50px -16px rgba(10, 37, 64, 0.45);
    border: 6px solid #fff;
}

.boat-showcase-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.boat-showcase-content h2 {
    margin-top: 14px;
    margin-bottom: 22px;
}

.boat-showcase-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
    font-size: 1.02rem;
}

.boat-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.boat-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
}

.boat-highlight i {
    font-size: 1.4rem;
    color: var(--accent-deep);
    flex-shrink: 0;
}

.boat-highlight strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.boat-highlight span {
    display: block;
    margin-top: 2px;
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* ===== Boat page — Gallery ===== */
.boat-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
}

.boat-gallery-card {
    position: relative;
    grid-column: span 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

.boat-gallery-card--wide {
    grid-column: span 2;
}

.boat-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out, ease-out);
}

.boat-gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -16px rgba(10, 37, 64, 0.4);
}

.boat-gallery-card:hover img { transform: scale(1.06); }

.boat-gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.85));
    pointer-events: none;
}

.boat-gallery-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 18px 20px;
    color: #fff;
}

.boat-gallery-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.boat-gallery-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.2;
    color: #fff;
}

/* ===== Boat page — Captain note ===== */
.captain-note {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 32px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.captain-note-quote-mark {
    color: var(--accent);
    font-size: 3.4rem;
    line-height: 1;
    margin-bottom: 18px;
    opacity: 0.85;
}

.captain-note-text {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-style: italic;
    line-height: 1.55;
    color: var(--text-dark);
    margin: 0 0 32px;
    font-weight: 400;
}

.captain-note-signature {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.captain-note-line {
    width: 48px;
    height: 1px;
    background: var(--accent);
}

.captain-note-name {
    text-align: left;
}

.captain-note-name strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.06em;
}

.captain-note-name span {
    display: block;
    margin-top: 2px;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* CTA */
.cta-section {
    position: relative;
    padding: 140px 0;
    background: var(--bg-night);
    overflow: hidden;
    text-align: center;
}

.cta-section::before, .cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.cta-section::before {
    top: -30%;
    right: -15%;
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.32), transparent 70%);
    opacity: 0.5;
}

.cta-section::after {
    bottom: -30%;
    left: -10%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(244, 194, 96, 0.18), transparent 70%);
    opacity: 0.4;
}

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

.cta-inner h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.cta-inner h2 .accent-word { font-style: italic; color: var(--accent); }

.cta-inner p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 44px;
    line-height: 1.7;
}

/* Footer — compact, editorial */
.site-footer {
    background: var(--bg-deep);
    padding: 72px 0 28px;
    color: rgba(255, 255, 255, 0.58);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.35), transparent);
}

/* Giant watermark mark behind content */
.site-footer::after {
    content: 'Sea Lion';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(8rem, 20vw, 18rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.025);
    line-height: 0.85;
    letter-spacing: -0.04em;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.footer-brand { display: flex; flex-direction: column; }

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-white);
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
}

.footer-brand-logo-mark {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--bg-night);
    font-size: 1.25rem;
    box-shadow: 0 6px 20px var(--accent-glow);
    flex-shrink: 0;
}

.footer-brand-tagline {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 360px;
    margin-bottom: 20px;
}

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

.footer-social {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.65);
    transition: all var(--transition);
    font-size: 0.95rem;
}

.footer-social:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-night);
    transform: translateY(-2px);
}

.site-footer h4 {
    font-family: var(--font-sans);
    color: var(--text-white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

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

.footer-links a, .footer-links li {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
    line-height: 1.6;
    transition: color var(--transition);
}

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

.footer-links li { display: flex; align-items: flex-start; gap: 10px; }

.footer-links li i { color: var(--accent); font-size: 0.88rem; margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    position: relative;
    z-index: 1;
}

.footer-bottom strong { color: rgba(255, 255, 255, 0.65); font-weight: 500; }

/* Floating contact */
.floating-contact {
    position: fixed;
    bottom: 82px;
    right: 28px;
    z-index: 900;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    color: var(--bg-night);
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: 0 10px 32px var(--accent-glow);
    transition: transform var(--transition), box-shadow var(--transition);
    animation: pulse-ring 2.4s ease-in-out infinite;
}

.floating-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.4;
    animation: pulse-outer 2.4s ease-out infinite;
    z-index: -1;
}

.floating-contact:hover {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 14px 40px rgba(34, 211, 238, 0.45);
    color: var(--bg-night);
}

@keyframes pulse-ring {
    0%, 100% { box-shadow: 0 10px 32px var(--accent-glow), 0 0 0 0 rgba(34, 211, 238, 0.35); }
    50% { box-shadow: 0 10px 32px var(--accent-glow), 0 0 0 14px rgba(34, 211, 238, 0); }
}

@keyframes pulse-outer {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Tours slider (homepage) */
.tours-slider {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
}

.tours-slider-viewport {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--bg-night);
    box-shadow: 0 40px 90px -28px rgba(10, 22, 40, 0.55),
                0 10px 30px -12px rgba(10, 22, 40, 0.22);
    counter-reset: tour-num;
}

.tours-slider-track {
    display: flex;
    transition: transform 0.85s cubic-bezier(0.65, 0.05, 0.36, 1);
    will-change: transform;
}

.tours-slider-track > .tour-card {
    flex: 0 0 100%;
    min-width: 0;
    width: 100%;
    counter-increment: tour-num;
}

/* ----- Slider tour card — premium style (scoped, doesn't affect tours.html) ----- */
.tours-slider .tour-card {
    border-radius: 0;
    background: var(--bg-night);
    overflow: hidden;
}

.tours-slider .tour-card:hover {
    transform: none;
    box-shadow: none;
}

.tours-slider .tour-card-image {
    height: 520px;
}

.tours-slider .tour-card-image img {
    transform: scale(1.05);
}

.tours-slider .tour-card.is-active .tour-card-image img {
    animation: tourKenBurns 4.5s var(--ease-out) forwards;
}

@keyframes tourKenBurns {
    from { transform: scale(1.05); }
    to   { transform: scale(1.16); }
}

.tours-slider .tour-card-image::after {
    background: linear-gradient(to top,
        rgba(8, 16, 30, 0.95) 0%,
        rgba(8, 16, 30, 0.7) 28%,
        rgba(8, 16, 30, 0.25) 55%,
        rgba(8, 16, 30, 0) 100%);
}

/* Number badge — top left */
.tours-slider .tour-card::before {
    content: counter(tour-num, decimal-leading-zero);
    position: absolute;
    top: 26px;
    left: 28px;
    z-index: 3;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.05rem;
    color: var(--accent);
    letter-spacing: 0.18em;
    padding-left: 38px;
}

.tours-slider .tour-card::after {
    content: '';
    position: absolute;
    top: 38px;
    left: 28px;
    width: 26px;
    height: 1px;
    background: var(--accent);
    z-index: 3;
    opacity: 0.85;
}

/* Tag pill — top right, refined */
.tours-slider .tour-card-tag {
    top: 24px;
    left: auto;
    right: 26px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px 16px;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
}

/* Body — refined typography */
.tours-slider .tour-card-body {
    padding: 0 56px 56px;
    z-index: 3;
}

.tours-slider .tour-card-body h3 {
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.tours-slider .tour-card-body p {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 24px;
    max-width: 540px;
}

/* Meta row — clean with separator */
.tours-slider .tour-card-meta {
    display: flex;
    gap: 0;
    padding: 18px 0;
    margin-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.65);
    max-width: 380px;
}

.tours-slider .tour-card-meta span {
    flex: 1;
    gap: 9px;
}

.tours-slider .tour-card-meta span + span {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    padding-left: 22px;
}

.tours-slider .tour-card-meta i {
    font-size: 1rem;
}

/* CTA — minimal underline-arrow style instead of pill */
.tours-slider .tour-card-cta {
    margin-top: 4px;
    padding: 0;
    background: transparent;
    color: var(--text-white);
    box-shadow: none;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    border-radius: 0;
    position: relative;
    gap: 14px;
}

.tours-slider .tour-card-cta::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 1px;
    width: 0;
    background: var(--accent);
}

.tours-slider .tour-card.is-active .tour-card-cta::after {
    animation: tourCtaLine 0.7s 0.65s var(--ease-out) forwards;
}

@keyframes tourCtaLine {
    from { width: 0; }
    to   { width: 60px; }
}

/* Staggered reveal for active slide content */
@keyframes tourSlideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes tourFadeInRight {
    from { opacity: 0; transform: translateX(14px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes tourFadeInLeft {
    from { opacity: 0; transform: translateX(-14px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes tourExpandLine {
    from { width: 0; opacity: 0; }
    to   { width: 26px; opacity: 0.85; }
}

@keyframes tourMetaReveal {
    from { opacity: 0; transform: translateY(14px); clip-path: inset(0 100% 0 0); }
    to   { opacity: 1; transform: translateY(0); clip-path: inset(0 0 0 0); }
}

.tours-slider .tour-card.is-active .tour-card-body h3 {
    animation: tourSlideUp 0.85s 0.15s var(--ease-out) backwards;
}
.tours-slider .tour-card.is-active .tour-card-body p {
    animation: tourSlideUp 0.85s 0.3s var(--ease-out) backwards;
}
.tours-slider .tour-card.is-active .tour-card-meta {
    animation: tourMetaReveal 0.9s 0.45s var(--ease-out) backwards;
}
.tours-slider .tour-card.is-active .tour-card-cta {
    animation: tourSlideUp 0.7s 0.6s var(--ease-out) backwards;
}
.tours-slider .tour-card.is-active::before {
    animation: tourFadeInLeft 0.7s 0.1s var(--ease-out) backwards;
}
.tours-slider .tour-card.is-active::after {
    animation: tourExpandLine 0.8s 0.25s var(--ease-out) backwards;
}
.tours-slider .tour-card.is-active .tour-card-tag {
    animation: tourFadeInRight 0.7s 0.2s var(--ease-out) backwards;
}

.tours-slider .tour-card-cta i {
    font-size: 1.1rem;
    color: var(--accent);
    transition: transform 0.4s var(--ease-out);
}

.tours-slider .tour-card:hover .tour-card-cta {
    box-shadow: none;
    transform: none;
    color: var(--accent);
}

.tours-slider .tour-card:hover .tour-card-cta i {
    transform: translateX(8px);
}

/* Controls bar — clean professional layout below the card */
.tours-slider-controls {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    padding: 0 4px;
}

.tours-slider-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(10, 22, 40, 0.04);
    color: var(--bg-night);
    border: 1px solid rgba(10, 22, 40, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    transition: background 0.35s var(--ease-out), color 0.35s var(--ease-out),
                border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out),
                box-shadow 0.35s var(--ease-out);
}

.tours-slider-arrow:hover {
    background: var(--bg-night);
    color: var(--accent);
    border-color: var(--bg-night);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -8px rgba(10, 22, 40, 0.35);
}

.tours-slider-arrow:active { transform: translateY(0); }

.tours-slider-bar {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 22px;
    min-width: 0;
}

.tours-slider-progress {
    flex: 1;
    height: 2px;
    background: rgba(10, 22, 40, 0.1);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.tours-slider-progress-fill {
    height: 100%;
    width: 33.333%;
    background: linear-gradient(90deg, var(--accent), #67e8f9);
    border-radius: 999px;
    box-shadow: 0 0 14px rgba(34, 211, 238, 0.55);
    transition: width 0.75s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.tours-slider-counter {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: var(--font-serif);
    color: var(--text-muted);
    letter-spacing: 0.05em;
    white-space: nowrap;
    font-feature-settings: 'tnum' 1;
}

.tours-slider-counter-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.tours-slider-counter-sep {
    font-size: 1.1rem;
    opacity: 0.4;
    font-style: italic;
    margin: 0 2px;
}

.tours-slider-counter-total {
    font-size: 0.95rem;
    font-style: italic;
}

/* Custom Milos silhouette with location markers and animated boat */
.intro-mini-map {
    width: 380px;
    height: 380px;
    margin: 0 0 36px;
    position: relative;
    background: transparent;
    overflow: visible;
}

.intro-mini-map-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    user-select: none;
    pointer-events: none;
    filter: drop-shadow(0 12px 24px rgba(10, 37, 64, 0.18));
}

.intro-mini-map-route {
    display: none;
}

.intro-mini-map-markers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 4;
}

.intro-marker {
    position: absolute;
    transform: translate(-50%, -50%);
}

.intro-marker-dot {
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22d3ee;
    box-shadow:
        0 0 0 2px #fff,
        0 0 0 3px rgba(34, 211, 238, 0.35),
        0 3px 8px rgba(10, 37, 64, 0.35);
    position: relative;
    z-index: 2;
}

.intro-marker-dot::before {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1px solid rgba(34, 211, 238, 0.55);
    animation: introMarkerPulse 2.6s ease-out infinite;
}

@keyframes introMarkerPulse {
    0%   { transform: scale(0.5); opacity: 0.9; }
    80%, 100% { transform: scale(1.6); opacity: 0; }
}

.intro-marker {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    pointer-events: auto;
    font: inherit;
    color: inherit;
    transition: transform 0.2s var(--ease-out, ease-out);
}

.intro-marker:hover .intro-marker-card,
.intro-marker:focus-visible .intro-marker-card {
    transform: translateY(-2px) var(--side-transform, none);
    box-shadow:
        0 10px 22px rgba(10, 37, 64, 0.28),
        0 0 0 1px #22d3ee;
}

.intro-marker-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 10px;
    box-shadow:
        0 6px 14px rgba(10, 37, 64, 0.2),
        0 0 0 1px rgba(34, 211, 238, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    width: 84px;
    overflow: hidden;
    transition: transform 0.2s var(--ease-out, ease-out), box-shadow 0.2s var(--ease-out, ease-out);
}

.intro-marker-thumb {
    width: 84px;
    height: 56px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.intro-marker-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    font-family: var(--font-sans);
    text-align: center;
    padding: 5px 4px 6px;
    gap: 2px;
}

.intro-marker-name {
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0a2540;
}

.intro-marker-desc {
    font-size: 0.46rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(10, 37, 64, 0.65);
}

.intro-marker[data-side="top"] .intro-marker-card {
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
}

.intro-marker[data-side="bottom"] .intro-marker-card {
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
}

.intro-marker[data-side="left"] .intro-marker-card {
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.intro-marker[data-side="right"] .intro-marker-card {
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

/* Preview modal */
.intro-preview {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.intro-preview.is-open {
    display: flex;
    animation: introPreviewFadeIn 0.25s ease-out;
}

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

.intro-preview-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.intro-preview-card {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(10, 37, 64, 0.6);
    animation: introPreviewSlide 0.35s cubic-bezier(.16,1,.3,1);
}

@keyframes introPreviewSlide {
    from { transform: translateY(20px) scale(0.96); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.intro-preview-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #0a2540;
    border: 0;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.25);
    transition: transform 0.15s ease-out, background 0.15s ease-out;
}

.intro-preview-close:hover {
    background: #fff;
    transform: scale(1.08);
}

.intro-preview-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.intro-preview-info {
    padding: 22px 26px 26px;
    font-family: var(--font-sans);
}

.intro-preview-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #22d3ee;
    margin-bottom: 8px;
}

.intro-preview-name {
    font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
    font-size: 2.1rem;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 6px;
    line-height: 1.1;
}

.intro-preview-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(10, 37, 64, 0.65);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.intro-preview-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(10, 37, 64, 0.78);
    margin: 0;
}

.intro-mini-map-boat {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    will-change: left, top, transform;
    filter: drop-shadow(0 4px 8px rgba(10, 22, 40, 0.5));
}

.intro-mini-map-boat svg {
    display: block;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

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

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.48s; }

.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Tour card — full route of stops (chevron-separated) */
.tour-card-route {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: .2rem;
    margin: .15rem 0 1.1rem;
}
.tour-card-route span {
    font-family: var(--font-sans);
    font-size: .76rem;
    font-weight: 600;
    color: #0a2540;
    letter-spacing: .01em;
    white-space: nowrap;
}
.tour-card-route i {
    color: var(--accent);
    font-size: .95rem;
    margin: 0 .1rem;
    opacity: .85;
}

/* ============================================================
   WhatsApp + Viber contact buttons
   ============================================================ */
.chat-fab {
    position: fixed;
    right: 28px;
    bottom: 142px; /* WhatsApp+Viber πάνω από Call (82px) & Book Now (24px) */
    z-index: 901;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.chat-fab-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform var(--transition), box-shadow var(--transition);
}
.chat-fab-btn svg { width: 24px; height: 24px; }
.chat-fab-btn:hover { transform: scale(1.1) translateY(-2px); color: #fff; }
.chat-fab-wa { background: #25D366; box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45); }
.chat-fab-vb { background: #7360F2; box-shadow: 0 10px 28px rgba(115, 96, 242, 0.45); }

/* logos μέσα σε dock & footer */
.mobile-dock-item .dock-logo { display: inline-flex; line-height: 0; }
.mobile-dock-item .dock-logo svg { width: 1.25rem; height: 1.25rem; }
.footer-social svg { width: 1em; height: 1em; vertical-align: middle; }

/* ============================================
   FAQ (αρχική) — accordion με <details>
   ============================================ */
.faq-section {
    padding: 120px 0;
    background: var(--bg-soft);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item[open] {
    border-color: rgba(34, 211, 238, 0.35);
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 58px 24px 28px;
    position: relative;
    font-family: var(--font-serif);
    font-size: 1.06rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}

.faq-item summary::-webkit-details-marker { display: none; }

/* Το + που γίνεται × όταν ανοίγει */
.faq-item summary::after {
    content: '';
    position: absolute;
    right: 28px;
    top: 50%;
    width: 13px;
    height: 13px;
    margin-top: -6px;
    background:
        linear-gradient(var(--accent-deep), var(--accent-deep)) center/100% 2px no-repeat,
        linear-gradient(var(--accent-deep), var(--accent-deep)) center/2px 100% no-repeat;
    transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
    transform: rotate(135deg);
}

.faq-item summary:hover { color: var(--accent-deep); }

.faq-item p {
    margin: 0;
    padding: 0 28px 26px;
    color: var(--text-body);
    line-height: 1.75;
    font-size: 0.97rem;
}

@media (max-width: 768px) {
    .faq-section { padding: 80px 0; }
    .faq-item summary {
        padding: 20px 48px 20px 20px;
        font-size: 0.99rem;
    }
    .faq-item summary::after { right: 20px; }
    .faq-item p { padding: 0 20px 22px; font-size: 0.94rem; }
}

/* ============================================
   Video showcase (αρχική)
   ============================================ */
.video-showcase {
    padding: 120px 0;
    background: var(--bg-night);
}

.video-showcase .section-header h2,
.video-showcase .section-header p { color: var(--text-white); }
.video-showcase .section-header p { opacity: 0.72; }
.video-showcase .section-eyebrow { color: var(--accent); }

.video-frame {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    line-height: 0;
    background: var(--bg-deep);
}

.video-frame video {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .video-showcase { padding: 72px 0; }
    .video-frame { border-radius: 12px; }
}

/* ============================================
   Image banner — εικόνα με δικό της κείμενο,
   προβάλλεται ολόκληρη (χωρίς object-fit crop)
   ============================================ */
.image-banner {
    padding: 0 0 110px;
    background: var(--bg-white);
}

.image-banner-frame {
    margin: 0 auto;
    max-width: 1140px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    line-height: 0;
}

/* καμία περικοπή — φαίνεται όλη η εικόνα */
.image-banner-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.image-banner-cta {
    text-align: center;
    margin-top: 36px;
}

@media (max-width: 768px) {
    .image-banner { padding: 0 0 64px; }
    .image-banner-frame { border-radius: 12px; }
    .image-banner-cta { margin-top: 26px; }
}

/* ============================================
   Marquee — κυλιόμενη μπάρα λέξεων πάνω από το footer
   ============================================ */
.marquee {
    position: relative;
    overflow: hidden;
    padding: 22px 0;
    background: var(--bg-night);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Σβήσιμο στις άκρες με ΣΚΟΥΡΟ ντεγκραντέ από πάνω.
   (ΟΧΙ mask-image — αυτό έκανε διάφανο και το φόντο και φαινόταν λευκό.) */
.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    pointer-events: none;
    z-index: 2;
}

.marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-night), rgba(10, 22, 40, 0));
}

.marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-night), rgba(10, 22, 40, 0));
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 26px;
    width: max-content;
    white-space: nowrap;
    animation: marquee-scroll 52s linear infinite;
}

.marquee-word,
.marquee-big {
    font-family: var(--font-sans);
    text-transform: uppercase;
    line-height: 1;
}

.marquee-word {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.34em;
    color: var(--text-white);
    opacity: 0.34;
}

.marquee-big {
    font-family: var(--font-serif);
    font-size: 1.32rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: none;
    color: var(--accent);
    opacity: 0.58;
}

.marquee-sep {
    font-size: 0.34rem;
    color: var(--gold);
    opacity: 0.42;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* σταματάει στο hover ώστε να προλαβαίνεις να διαβάσεις */
.marquee:hover .marquee-track { animation-play-state: paused; }

@media (max-width: 768px) {
    .marquee { padding: 16px 0; }
    .marquee-track { gap: 18px; animation-duration: 38s; }
    .marquee-word { font-size: 0.6rem; letter-spacing: 0.26em; }
    .marquee-big { font-size: 1.06rem; }
}

/* σεβασμός σε όσους έχουν απενεργοποιήσει τα animations */
@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; transform: none; }
}

/* ============================================
   Tour overview — αναλυτική περιγραφή εκδρομής
   ============================================ */
.tour-overview {
    padding: 0 0 110px;
    background: var(--bg-white);
}

.tour-overview-card {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 64px clamp(24px, 5vw, 72px);
    border-radius: 24px;
    background:
        radial-gradient(120% 100% at 50% 0%, var(--accent-soft) 0%, rgba(34, 211, 238, 0) 55%),
        var(--bg-soft);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

/* λεπτή χρυσή/τιρκουάζ γραμμή στην κορυφή της κάρτας */
.tour-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
}

.tour-overview-eyebrow {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--accent-deep);
    margin-bottom: 16px;
}

.tour-overview-card h2 {
    text-align: center;
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3.2vw, 2.15rem);
    line-height: 1.22;
    color: var(--text-dark);
    margin: 0 auto;
    max-width: 18em;
}

/* διακοσμητικό διαχωριστικό με εικονίδιο σκάφους */
.tour-overview-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 22px 0 38px;
}

.tour-overview-rule span {
    display: block;
    width: 54px;
    height: 1px;
    background: linear-gradient(90deg, rgba(203, 213, 225, 0), var(--line-strong));
}

.tour-overview-rule span:last-child {
    background: linear-gradient(270deg, rgba(203, 213, 225, 0), var(--line-strong));
}

.tour-overview-rule i {
    color: var(--gold);
    font-size: 1.35rem;
    opacity: 0.9;
}

.tour-overview-body {
    max-width: 720px;
    margin: 0 auto;
}

.tour-overview-body p {
    color: var(--text-body);
    line-height: 1.9;
    font-size: 1.02rem;
    margin-bottom: 22px;
}

.tour-overview-body p:last-child { margin-bottom: 0; }

/* υπότιτλοι μέσα στο κείμενο */
.tour-overview-body h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    line-height: 1.3;
    color: var(--text-dark);
    margin: 40px 0 16px;
    padding-left: 16px;
    border-left: 3px solid var(--accent);
}

.tour-overview-body h3:first-child { margin-top: 0; }

/* πρώτη παράγραφος = πιο έντονη, με drop cap */
.tour-overview-lead {
    color: var(--text-dark) !important;
    font-size: 1.12rem !important;
}

.tour-overview-lead::first-letter {
    float: left;
    font-family: var(--font-serif);
    font-size: 3.4rem;
    line-height: 0.82;
    font-weight: 700;
    color: var(--accent-deep);
    margin: 6px 12px 0 0;
}

@media (max-width: 768px) {
    .tour-overview { padding: 0 0 68px; }
    .tour-overview-card { padding: 44px 22px; border-radius: 18px; }
    .tour-overview-body p { font-size: 0.98rem; line-height: 1.85; }
    .tour-overview-lead { font-size: 1.05rem !important; }
    .tour-overview-lead::first-letter { font-size: 2.8rem; margin: 4px 9px 0 0; }
    .tour-overview-rule { margin: 18px 0 28px; }
    .tour-overview-rule span { width: 40px; }
}

/* ============================================
   Reviews — κριτικές Google (widget + CTA)
   ============================================ */
.reviews-section {
    padding: 110px 0;
    background: var(--bg-white);
}

.reviews-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 10px 20px;
    background: var(--bg-soft);
    border: 1px solid var(--border-light);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}

.reviews-google-g { width: 20px; height: 20px; flex-shrink: 0; }
.reviews-google-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.reviews-google-label {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-soft, #475569);
    letter-spacing: 0.02em;
}

.reviews-widget {
    max-width: 1080px;
    margin: 48px auto 0;
    min-height: 1px;
}

.reviews-widget:empty { margin: 0; }

.reviews-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .reviews-section { padding: 72px 0; }
    .reviews-widget { margin-top: 32px; }
    .reviews-cta { margin-top: 32px; }
    .reviews-cta .btn-primary, .reviews-cta .btn-outline { width: 100%; justify-content: center; }
}

/* ============================================
   Tour card price (τιμή στην κάρτα)
   ============================================ */
.tour-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 18px;
}

.tour-card-price-from {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.tour-card-price-amount {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

/* ============================================
   Review cards (πραγματικές κριτικές Google)
   ============================================ */
.reviews-google-rating {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink, #0f172a);
    line-height: 1;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 48px auto 0;
}

.review-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px 26px;
    box-shadow: var(--shadow-md);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-card-top { display: flex; align-items: center; gap: 12px; }

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.review-who { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.review-who strong { color: var(--text-dark); font-size: 0.98rem; }

.review-meta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--ink-soft, #64748b);
}

.review-g { width: 13px; height: 13px; }

.review-stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 2px; }

.review-card p {
    color: var(--text-body);
    font-size: 0.97rem;
    line-height: 1.7;
    margin: 0;
}

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

/* avatar φωτό κριτικής (από Google) */
.review-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.review-avatar { overflow: hidden; }
