/* ═══════════════════════════════════════════════════════════
   TEKNEKIRALA — PREMIUM MIDNIGHT LUXURY 2026
   Deep Midnight Navy + Champagne Gold + Iris White
   ═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
    --tk-ocean: #0d2b4e;
    --tk-ocean-dark: #071a33;
    --tk-ocean-deep: #040e1e;
    --tk-ocean-light: #1565c0;
    --tk-copper: #c9a84b;
    --tk-copper-dark: #a8883a;
    --tk-copper-light: #e0c06e;
    --tk-copper-glow: rgba(201,168,75,.18);
    --tk-sand: #f5f2ed;
    --tk-sand-dark: #ebe5db;
    --tk-cream: #fafaf8;
    --tk-white: #ffffff;
    --tk-text: #0c1825;
    --tk-text-secondary: #334155;
    --tk-text-muted: #64748b;
    --tk-text-white: #ffffff;
    --tk-border: #d4cdc4;
    --tk-border-light: #e8e2d8;
    --tk-success: #059669;
    --tk-danger: #e53e3e;
    --tk-r: 12px;
    --tk-r-lg: 20px;
    --tk-r-xl: 30px;
    --tk-r-full: 9999px;
    --tk-shadow-sm: 0 1px 4px rgba(7,26,51,.05), 0 4px 16px rgba(7,26,51,.07);
    --tk-shadow-md: 0 4px 20px rgba(7,26,51,.08), 0 12px 36px rgba(7,26,51,.06);
    --tk-shadow-lg: 0 8px 36px rgba(7,26,51,.12), 0 20px 56px rgba(7,26,51,.09);
    --tk-shadow-xl: 0 20px 80px rgba(7,26,51,.18), 0 8px 32px rgba(201,168,75,.1);
    --tk-font: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
    --tk-font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --tk-ease: cubic-bezier(.22,.68,0,1.2);
    --tk-ease-smooth: cubic-bezier(.4,0,.2,1);
    --tk-t: .3s var(--tk-ease-smooth);
    --tk-container: 1240px;
    --tk-gold-gradient: linear-gradient(135deg, #c9a84b 0%, #e0c06e 40%, #c9a84b 70%, #a8883a 100%);
    --tk-ocean-gradient: linear-gradient(135deg, #040e1e 0%, #071a33 40%, #0d2b4e 70%, #1565c0 100%);
}

/* ═══════════════════════════════════════════════════════════
   TOP INFO BAR
   ═══════════════════════════════════════════════════════════ */
/* ─── TOPBAR (removed — integrated into navbar) ─── */
.tk-topbar { display: none; }

/* ═══════════════════════════════════════════════════════════
   NAVBAR — GLASS EDITION
   ═══════════════════════════════════════════════════════════ */
.tk-navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 18px 0;
    background: transparent;
    transition: all .4s var(--tk-ease-smooth);
}
.tk-navbar.scrolled {
    padding: 10px 0;
    background: rgba(4,14,30,.92);
    backdrop-filter: blur(24px) saturate(1.6); -webkit-backdrop-filter: blur(24px) saturate(1.6);
    box-shadow: 0 2px 40px rgba(0,0,0,.35);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.tk-navbar-inner {
    max-width: var(--tk-container); margin: 0 auto; padding: 0 28px;
    display: flex; align-items: center; gap: 24px;
}

/* SVG Logo */
.tk-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; z-index: 1001; color: #fff; }
.tk-logo-svg { height: 40px; width: auto; transition: all .3s; }
.tk-navbar.scrolled .tk-logo-svg { height: 34px; }

/* Desktop Nav Links */
.tk-nav-links {
    display: flex; align-items: center; gap: 2px;
    margin: 0 auto;
}
.tk-nav-link {
    position: relative; padding: 8px 16px; font-size: .88rem; font-weight: 500;
    color: rgba(255,255,255,.7); border-radius: 8px;
    transition: all .25s; text-decoration: none; white-space: nowrap;
}
.tk-nav-link::after {
    content: ''; position: absolute; bottom: 2px; left: 50%; width: 0; height: 2px;
    background: var(--tk-copper); border-radius: 2px; transform: translateX(-50%);
    transition: width .25s var(--tk-ease);
}
.tk-nav-link:hover, .tk-nav-link.active { color: #fff; }
.tk-nav-link:hover::after, .tk-nav-link.active::after { width: 20px; }

/* Right Actions */
.tk-nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.tk-nav-icon {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.08); color: rgba(255,255,255,.8);
    transition: all .25s; text-decoration: none; border: 1px solid rgba(255,255,255,.06);
}
.tk-nav-icon:hover { background: var(--tk-copper); color: #fff; transform: translateY(-1px); }

/* CTA Button */
.tk-nav-cta {
    display: inline-flex; align-items: center; padding: 9px 22px;
    background: var(--tk-gold-gradient); color: var(--tk-ocean-deep) !important;
    font-weight: 700; font-size: .82rem; border-radius: 10px;
    box-shadow: 0 4px 20px rgba(201,168,75,.25);
    text-transform: uppercase; letter-spacing: .04em; transition: all .3s;
    text-decoration: none;
}
.tk-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,75,.4); }

/* Language Pills */
.tk-lang-pills {
    display: flex; background: rgba(255,255,255,.08); padding: 3px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,.06);
}
.tk-lang-pills a {
    padding: 4px 10px; font-size: .72rem; color: rgba(255,255,255,.5);
    text-decoration: none; font-weight: 700; border-radius: 6px; transition: all .25s;
    letter-spacing: .03em;
}
.tk-lang-pills a.active { background: var(--tk-copper); color: #fff; }
.tk-lang-pills a:hover:not(.active) { color: #fff; }

/* ─── Hamburger ─── */
.tk-hamburger {
    display: none; flex-direction: column; justify-content: center; align-items: center;
    width: 44px; height: 44px; gap: 6px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px; cursor: pointer; color: #fff; z-index: 1002;
    padding: 0; transition: all .3s;
}
.tk-hamburger span {
    display: block; width: 20px; height: 2px; background: #fff;
    border-radius: 2px; transition: all .3s cubic-bezier(.4,0,.2,1);
    transform-origin: center;
}
.tk-hamburger.is-active { background: var(--tk-copper); border-color: var(--tk-copper); }
.tk-hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.tk-hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.tk-hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

/* ─── Mobile Drawer ─── */
.tk-drawer {
    position: fixed; top: 0; right: 0; bottom: 0; width: 300px; max-width: 85vw;
    z-index: 1100; background: var(--tk-ocean-deep);
    transform: translateX(100%); transition: transform .35s var(--tk-ease-smooth);
    display: flex; flex-direction: column; overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -8px 0 40px rgba(0,0,0,.5);
}
.tk-drawer.is-open { transform: translateX(0); }
.tk-drawer-backdrop {
    position: fixed; inset: 0; z-index: 1099;
    background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden; pointer-events: none; transition: all .3s;
}
.tk-drawer-backdrop.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.tk-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.tk-drawer-logo { height: 34px; width: auto; color: #fff; }
.tk-drawer-close {
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    border-radius: 8px; background: rgba(255,255,255,.08); border: none;
    color: rgba(255,255,255,.6); cursor: pointer; transition: all .25s;
}
.tk-drawer-close:hover { background: rgba(255,255,255,.15); color: #fff; }
.tk-drawer-nav {
    display: flex; flex-direction: column; padding: 12px 16px; flex: 1;
}
.tk-drawer-nav a {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px; font-size: 1rem; font-weight: 500;
    color: rgba(255,255,255,.7); text-decoration: none; border-radius: 10px;
    transition: all .2s;
}
.tk-drawer-nav a svg { color: rgba(255,255,255,.35); flex-shrink: 0; }
.tk-drawer-nav a:hover, .tk-drawer-nav a.active { color: #fff; background: rgba(255,255,255,.06); }
.tk-drawer-nav a.active { color: var(--tk-copper-light); }
.tk-drawer-nav a:hover svg { color: var(--tk-copper); }
.tk-drawer-divider { height: 1px; background: rgba(255,255,255,.08); margin: 4px 24px; }
.tk-drawer-link {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 32px; font-size: .95rem; font-weight: 500;
    color: rgba(255,255,255,.6); text-decoration: none; transition: all .2s;
}
.tk-drawer-link svg { color: rgba(255,255,255,.3); flex-shrink: 0; }
.tk-drawer-link:hover { color: #fff; }
.tk-drawer-link--danger { color: var(--tk-danger) !important; }
.tk-drawer-footer {
    margin-top: auto; padding: 24px; border-top: 1px solid rgba(255,255,255,.08);
    display: flex; flex-direction: column; gap: 16px; align-items: center;
}
.tk-drawer-footer .tk-lang-pills { width: 100%; justify-content: center; }
.tk-drawer-cta {
    display: block; width: 100%; text-align: center; padding: 14px;
    background: var(--tk-gold-gradient); color: var(--tk-ocean-deep) !important;
    font-weight: 700; font-size: .88rem; border-radius: 10px;
    text-decoration: none; text-transform: uppercase; letter-spacing: .04em;
    box-shadow: 0 4px 20px rgba(201,168,75,.25); transition: all .3s;
}
.tk-drawer-cta:hover { box-shadow: 0 8px 30px rgba(201,168,75,.4); }

/* Responsive – Navbar */
@media (max-width: 1024px) {
    .tk-nav-links, .tk-nav-actions { display: none; }
    .tk-hamburger { display: flex; margin-left: auto; }
    .tk-navbar-inner { padding: 0 20px; }
}
@media (max-width: 480px) {
    .tk-navbar-inner { padding: 0 16px; }
    .tk-logo-svg { height: 32px; }
    .tk-hamburger { width: 40px; height: 40px; }
    .tk-drawer { width: 280px; }
}

/* ─── BASE ─── */
.tk-body {
    margin: 0; padding: 0;
    font-family: var(--tk-font);
    font-size: 15.5px; line-height: 1.75;
    color: var(--tk-text);
    background: var(--tk-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    letter-spacing: .01em;
}
.tk-body *, .tk-body *::before, .tk-body *::after { box-sizing: border-box; }
.tk-body img { max-width: 100%; height: auto; display: block; }
.tk-currency { font-style: italic; font-weight: 700; letter-spacing: .02em; font-family: var(--tk-font-display); }
.tk-body a { color: var(--tk-copper); text-decoration: none; transition: color var(--tk-t); }
.tk-body a:hover { color: var(--tk-copper-dark); }
.tk-body h1,.tk-body h2,.tk-body h3,.tk-body h4 {
    font-family: var(--tk-font-display);
    color: var(--tk-text); line-height: 1.18; margin: 0 0 .5em;
    letter-spacing: -.02em;
}
.tk-body h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 700; }
.tk-body h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 700; }
.tk-body h3 { font-size: 1.3rem; font-weight: 600; }
.tk-body h4 { font-size: 1.08rem; font-weight: 600; }
.tk-body p { margin: 0; }

/* ─── LAYOUT ─── */
.tk-container { max-width: var(--tk-container); margin: 0 auto; padding: 0 32px; }
.tk-container-sm { max-width: 820px; }
.tk-section { padding: 90px 0; position: relative; }
.tk-section-alt {
    background: linear-gradient(180deg, var(--tk-cream) 0%, var(--tk-sand) 40%, var(--tk-sand-dark) 60%, var(--tk-sand) 80%, var(--tk-cream) 100%);
    border-top: 1px solid var(--tk-border-light);
    border-bottom: 1px solid var(--tk-border-light);
    position: relative;
}
.tk-section-alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(201,168,75,.05) 0%, transparent 60%),
                      radial-gradient(circle at 80% 30%, rgba(13,43,78,.04) 0%, transparent 50%);
    pointer-events: none;
}
/* Ocean dark section (used for steps, etc.) */
.tk-section-ocean {
    background: var(--tk-ocean-gradient);
    color: #fff; position: relative; overflow: hidden;
}
.tk-section-ocean::before {
    content: ''; position: absolute; top: -20%; right: -6%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,168,75,.12), transparent 55%); border-radius: 50%;
    pointer-events: none;
}
.tk-section-ocean::after {
    content: ''; position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
    pointer-events: none;
}
.tk-section-ocean .tk-badge { background: rgba(193,127,89,.15); color: var(--tk-copper-light); border-color: rgba(193,127,89,.25); }
.tk-section-ocean h2 { color: #fff; }
.tk-section-ocean h2::after { background: linear-gradient(90deg, var(--tk-copper-light), rgba(255,255,255,.3)); }
.tk-section-ocean .tk-step {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.tk-section-ocean .tk-step::before {
    background: linear-gradient(90deg, var(--tk-copper-light), rgba(255,255,255,.15));
}
.tk-section-ocean .tk-step:hover {
    background: rgba(255,255,255,.1); border-color: var(--tk-copper-light);
    box-shadow: 0 16px 48px rgba(0,0,0,.25);
}
.tk-section-ocean .tk-step h3 { color: #fff; }
.tk-section-ocean .tk-step p { color: rgba(255,255,255,.55); }
.tk-section-ocean .tk-step-arrow { color: var(--tk-copper-light); }
.tk-section-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 16px; margin-bottom: 48px;
}
.tk-section-header.tk-center { flex-direction: column; align-items: center; text-align: center; }
.tk-section-header h2 { margin-bottom: 0; position: relative; }
.tk-section-header h2::after {
    content: ''; display: block; width: 56px; height: 3px;
    background: var(--tk-gold-gradient);
    border-radius: 4px; margin-top: 16px;
    box-shadow: 0 2px 12px rgba(201,168,75,.3);
}
.tk-section-header.tk-center h2::after { margin-left: auto; margin-right: auto; }
.tk-section-title { text-align: center; margin-bottom: 40px; }

/* ─── BUTTONS ─── */
.tk-btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 34px;
    background: var(--tk-gold-gradient);
    color: var(--tk-ocean-deep) !important;
    font-family: var(--tk-font); font-weight: 700; font-size: .92rem;
    border: none; border-radius: var(--tk-r-full); cursor: pointer;
    transition: all .28s var(--tk-ease-smooth); text-decoration: none; white-space: nowrap;
    box-shadow: 0 6px 24px rgba(201,168,75,.4), inset 0 1px 0 rgba(255,255,255,.2);
    letter-spacing: .03em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}
.tk-btn-primary::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.15), transparent, rgba(255,255,255,.08));
    opacity: 0; transition: opacity .3s;
}
.tk-btn-primary:hover {
    background: linear-gradient(135deg, var(--tk-copper-light) 0%, var(--tk-copper) 50%, var(--tk-copper-dark) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 44px rgba(201,168,75,.55), 0 0 0 3px rgba(201,168,75,.15);
    color: var(--tk-ocean-deep) !important;
}
.tk-btn-primary:hover::after { opacity: 1; }
.tk-btn-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 30px;
    background: transparent; color: var(--tk-ocean);
    font-family: var(--tk-font); font-weight: 600; font-size: .92rem;
    border: 2px solid var(--tk-border); border-radius: var(--tk-r-full); cursor: pointer;
    transition: all .28s var(--tk-ease-smooth); text-decoration: none; white-space: nowrap;
    letter-spacing: .015em;
}
.tk-btn-outline:hover {
    background: var(--tk-ocean); color: var(--tk-white) !important;
    border-color: var(--tk-ocean); transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(13,43,78,.2);
}
.tk-btn-sm { padding: 9px 20px; font-size: .84rem; }
.tk-btn-lg { padding: 16px 38px; font-size: 1.05rem; }
.tk-btn-block { display: flex; width: 100%; }

/* ─── BADGES ─── */
.tk-badge {
    display: inline-block; padding: 8px 20px;
    background: linear-gradient(135deg, rgba(201,168,75,.1), rgba(201,168,75,.06));
    color: var(--tk-copper-dark);
    font-weight: 700; font-size: .72rem;
    border-radius: var(--tk-r-full); letter-spacing: .1em; text-transform: uppercase;
    border: 1px solid rgba(201,168,75,.25);
    box-shadow: inset 0 1px 0 rgba(201,168,75,.1);
}
.tk-badge-white { background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(6px); }
.tk-stat-chip {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 7px 16px; background: var(--tk-white);
    color: var(--tk-text-secondary); font-size: .85rem;
    border-radius: var(--tk-r-full); border: 1px solid var(--tk-border-light);
    font-weight: 500;
}
.tk-muted { color: var(--tk-text-muted); font-size: .85rem; }
.tk-small { font-size: .8rem; }

/* ─── CARDS ─── */
.tk-card {
    background: var(--tk-white);
    border-radius: var(--tk-r-lg); padding: 30px;
    border: 1px solid var(--tk-border-light);
    box-shadow: var(--tk-shadow-sm);
    transition: box-shadow .35s var(--tk-ease-smooth), transform .35s var(--tk-ease-smooth), border-color .35s;
    position: relative;
    overflow: hidden;
}
.tk-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--tk-gold-gradient);
}
.tk-card::after {
    content: none;
}
.tk-card:hover {
    box-shadow: var(--tk-shadow-xl);
    border-color: rgba(201,168,75,.3);
    transform: translateY(-5px);
}
.tk-card h2,.tk-card h3 { margin-bottom: 16px; }

/* (navbar styles moved above, old block removed) */

/* ═══════════════════════════════════════════════════════════
   HERO — IMMERSIVE WAVE
   ═══════════════════════════════════════════════════════════ */
.tk-hero {
    position: relative; min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.tk-hero-bg { position: absolute; inset: 0; z-index: 0; }
.tk-hero-img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(.42) saturate(1.2);
}
.tk-hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 40%, rgba(201,168,75,.06), transparent 60%),
        linear-gradient(175deg, rgba(4,14,30,.88) 0%, rgba(7,26,51,.4) 40%, rgba(4,14,30,.9) 100%);
}

/* Content */
.tk-hero-content {
    position: relative; z-index: 2;
    width: 100%; max-width: 900px; margin: 0 auto;
    padding: 140px 24px 120px; text-align: center;
    display: flex; flex-direction: column; align-items: center;
}

/* Kicker pill */
.tk-hero-kicker {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 22px; margin-bottom: 28px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--tk-r-full); backdrop-filter: blur(12px);
    color: rgba(255,255,255,.7); font-size: .78rem; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase;
}
.tk-hero-kicker-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--tk-copper);
    box-shadow: 0 0 10px rgba(201,168,75,.5);
    animation: kickerPulse 2s ease-in-out infinite;
}
@keyframes kickerPulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.7); }
}

/* Title */
.tk-hero-title {
    font-family: var(--tk-font-display); font-weight: 700;
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    color: #fff; line-height: 1.1; margin-bottom: 20px;
    letter-spacing: -.03em;
}
.tk-hero-title em {
    display: block; font-style: italic;
    background: var(--tk-gold-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(201,168,75,.3));
}

/* Subtitle */
.tk-hero-subtitle {
    font-size: 1.05rem; color: rgba(255,255,255,.5);
    max-width: 520px; line-height: 1.7; margin-bottom: 40px;
}

/* Search Bar */
.tk-hero-search {
    width: 100%; max-width: 760px; margin-bottom: 44px;
}
.tk-hero-search-row {
    display: flex; align-items: stretch; gap: 0;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,.3);
}
.tk-hero-search-field {
    flex: 1; display: flex; align-items: center; gap: 10px;
    padding: 16px 20px; border-right: 1px solid rgba(255,255,255,.08);
    min-width: 0;
}
.tk-hero-search-field:last-of-type { border-right: none; }
.tk-hero-search-field svg { color: rgba(255,255,255,.35); flex-shrink: 0; }
.tk-hero-search-field input,
.tk-hero-search-field select {
    width: 100%; background: none; border: none; color: #fff;
    font-family: var(--tk-font); font-size: .9rem; outline: none;
}
.tk-hero-search-field input::placeholder { color: rgba(255,255,255,.35); }
.tk-hero-search-field select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='rgba(255,255,255,0.4)' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6.5 6.5-6.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 4px center; padding-right: 20px;
}
.tk-hero-search-field select option { background: var(--tk-ocean-deep); color: #fff; }
.tk-hero-search-btn {
    display: flex; align-items: center; gap: 8px; padding: 16px 28px;
    background: var(--tk-gold-gradient); color: var(--tk-ocean-deep);
    font-family: var(--tk-font); font-weight: 700; font-size: .88rem;
    border: none; cursor: pointer; white-space: nowrap;
    transition: all .3s; text-transform: uppercase; letter-spacing: .03em;
    flex-shrink: 0;
}
.tk-hero-search-btn:hover { filter: brightness(1.1); }

/* Stat Chips */
.tk-hero-chips {
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px; padding: 8px 16px;
}
.tk-hero-chip {
    display: flex; align-items: center; gap: 10px; padding: 12px 24px;
}
.tk-hero-chip svg { color: var(--tk-copper-light); opacity: .6; flex-shrink: 0; }
.tk-hero-chip strong {
    font-family: var(--tk-font-display); font-size: 1.5rem; font-weight: 700; color: #fff;
}
.tk-hero-chip span { font-size: .76rem; color: rgba(255,255,255,.4); white-space: nowrap; }
.tk-hero-chip--gold strong {
    background: var(--tk-gold-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.tk-hero-chip--gold span { color: var(--tk-copper-light); opacity: .7; }
.tk-hero-chip--gold svg { color: var(--tk-copper); opacity: .8; }
.tk-hero-chip-sep { width: 1px; height: 30px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* Wave Divider */
.tk-hero-wave {
    position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3;
    line-height: 0;
}
.tk-hero-wave svg { width: 100%; height: auto; display: block; }

/* Hero Responsive */
@media (max-width: 768px) {
    .tk-hero-content { padding: 120px 20px 100px; }
    .tk-hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .tk-hero-subtitle { font-size: .95rem; margin-bottom: 28px; }
    .tk-hero-search-row { flex-direction: column; border-radius: 14px; }
    .tk-hero-search-field { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 14px 18px; }
    .tk-hero-search-field:last-of-type { border-bottom: none; }
    .tk-hero-search-btn { justify-content: center; padding: 16px; border-radius: 0 0 14px 14px; }
    .tk-hero-chips { flex-direction: column; gap: 0; padding: 4px; }
    .tk-hero-chip { width: 100%; padding: 10px 20px; }
    .tk-hero-chip-sep { width: 80%; height: 1px; }
}
@media (max-width: 480px) {
    .tk-hero-content { padding: 110px 16px 90px; }
    .tk-hero-kicker { padding: 6px 16px; font-size: .72rem; }
    .tk-hero-chip strong { font-size: 1.2rem; }
}

/* Legacy compat */
.tk-currency { font-style: italic; font-weight: 700; letter-spacing: .02em; font-family: var(--tk-font-display); }
.tk-stat { text-align: center; }
.tk-stat strong { display: block; font-family: var(--tk-font-display); font-size: 2.2rem; font-weight: 700; color: #fff; }
.tk-stat span { font-size: .84rem; color: rgba(255,255,255,.5); letter-spacing: .02em; }

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════ */
.tk-trust-bar {
    background: var(--tk-white);
    border-bottom: 1px solid var(--tk-border-light); padding: 24px 0;
    box-shadow: 0 4px 16px rgba(15,61,92,.04);
}
.tk-trust-items { display: flex; justify-content: center; gap: 44px; flex-wrap: wrap; }
.tk-trust-item {
    display: flex; align-items: center; gap: 10px;
    font-size: .88rem; color: var(--tk-text-secondary); font-weight: 600;
    transition: color var(--tk-t);
}
.tk-trust-item:hover { color: var(--tk-copper); }
.tk-trust-icon { font-size: 1.3rem; color: var(--tk-copper); }

/* ═══════════════════════════════════════════════════════════
   CATEGORIES
   ═══════════════════════════════════════════════════════════ */
.tk-categories { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tk-category-card {
    background: var(--tk-white); border: 1px solid var(--tk-border-light);
    border-radius: 24px; padding: 40px 28px; text-align: center;
    text-decoration: none; transition: all .4s var(--tk-ease); position: relative; overflow: hidden;
    box-shadow: var(--tk-shadow-sm);
}
.tk-category-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--tk-gold-gradient);
}
.tk-category-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(201,168,75,.04) 0%, transparent 50%);
    opacity: 0; transition: opacity .4s;
}
.tk-category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 60px rgba(13,43,78,.14), 0 0 0 1px rgba(201,168,75,.2);
    border-color: rgba(201,168,75,.25);
}
.tk-category-card:hover::after { opacity: 1; }
.tk-category-icon {
    font-size: 2.6rem; margin-bottom: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    width: 64px; height: 64px; border-radius: 18px;
    background: linear-gradient(135deg, var(--tk-copper-glow), rgba(193,127,89,.06));
}
.tk-category-card h3 {
    font-family: var(--tk-font); font-size: 1.05rem; font-weight: 700;
    color: var(--tk-text); margin-bottom: 8px;
}
.tk-category-card p { font-size: .84rem; color: var(--tk-text-muted); margin: 0; line-height: 1.55; }

/* ═══════════════════════════════════════════════════════════
   YACHT CARDS
   ═══════════════════════════════════════════════════════════ */
.tk-yacht-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tk-yacht-card {
    background: var(--tk-white); border-radius: 22px; overflow: hidden;
    border: 1px solid var(--tk-border-light); transition: all .4s var(--tk-ease);
    box-shadow: var(--tk-shadow-sm);
    position: relative;
}
.tk-yacht-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 2;
    background: var(--tk-gold-gradient);
}
.tk-yacht-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 28px 80px rgba(13,43,78,.18), 0 0 0 1px rgba(201,168,75,.2);
    border-color: rgba(201,168,75,.2);
}
.tk-yacht-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.tk-yacht-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s var(--tk-ease);
}
.tk-yacht-card:hover .tk-yacht-card-img img { transform: scale(1.06); }
.tk-yacht-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(7,30,48,.65));
    display: flex; align-items: flex-end; justify-content: center;
    padding: 22px; opacity: 0; transition: opacity var(--tk-t);
}
.tk-yacht-card:hover .tk-yacht-card-overlay { opacity: 1; }
.tk-yacht-price-tag {
    position: absolute; top: 16px; right: 16px;
    background: var(--tk-gold-gradient);
    color: var(--tk-ocean-deep); padding: 10px 20px; border-radius: var(--tk-r);
    font-weight: 800; font-size: 1.12rem; line-height: 1;
    border: none;
    box-shadow: 0 6px 24px rgba(201,168,75,.5), inset 0 1px 0 rgba(255,255,255,.25);
    letter-spacing: -.01em;
}
.tk-yacht-price-tag small { font-weight: 400; font-size: .72rem; opacity: .65; }
.tk-yacht-badge {
    position: absolute; top: 16px; left: 16px;
    padding: 6px 14px; font-size: .72rem; font-weight: 700;
    border-radius: var(--tk-r-full); text-transform: uppercase; letter-spacing: .05em;
}
.tk-badge-gold { background: var(--tk-copper); color: #fff; }
.tk-badge-blue { background: var(--tk-ocean-light); color: #fff; }
.tk-badge-new { background: #16a34a; color: #fff; }
.tk-badge-popular { background: #f59e0b; color: #fff; }
.tk-badge-discount { background: #ef4444; color: #fff; }
.tk-badge-premium { background: #8b5cf6; color: #fff; }
.tk-badge-last_minute { background: #ec4899; color: #fff; }
.tk-badge-top_rated { background: #0ea5e9; color: #fff; }
.tk-badge-captain_included { background: #0d9488; color: #fff; }
.tk-badge-exclusive { background: var(--tk-copper); color: #fff; }
.tk-yacht-badges { position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.tk-yacht-badges .tk-yacht-badge { position: static; }
.tk-badge-float { position: absolute; top: 14px; left: 14px; z-index: 2; }
.tk-yacht-card-body { padding: 22px; }
.tk-yacht-card-body h3 {
    font-family: var(--tk-font); font-size: 1.05rem; font-weight: 700; margin-bottom: 4px;
}
.tk-yacht-card-body h3 a { color: var(--tk-text); text-decoration: none; }
.tk-yacht-card-body h3 a:hover { color: var(--tk-copper); }
.tk-yacht-location { font-size: .84rem; color: var(--tk-text-muted); margin: 0 0 12px; }
.tk-yacht-specs {
    display: flex; gap: 14px; flex-wrap: wrap;
    font-size: .78rem; color: var(--tk-text-secondary); margin-bottom: 16px;
}
.tk-yacht-card-footer { display: flex; gap: 10px; }
.tk-yacht-card-footer .tk-btn-outline,
.tk-yacht-card-footer .tk-btn-primary { flex: 1; text-align: center; }

/* ═══════════════════════════════════════════════════════════
   STEPS — HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */
.tk-steps { display: flex; align-items: flex-start; justify-content: center; gap: 16px; flex-wrap: wrap; }
.tk-step {
    flex: 1; min-width: 200px; max-width: 320px;
    text-align: center; padding: 44px 28px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.12); transition: all .38s var(--tk-ease);
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
    position: relative; overflow: hidden;
}
.tk-step::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--tk-gold-gradient);
}
.tk-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,.3), 0 0 0 1px rgba(201,168,75,.3);
    border-color: rgba(201,168,75,.25);
    background: rgba(255,255,255,.1);
}
.tk-step-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 68px; height: 68px;
    background: var(--tk-gold-gradient);
    color: var(--tk-ocean-deep); font-family: var(--tk-font-display);
    font-size: 1.7rem; font-weight: 800; border-radius: 50%; margin-bottom: 22px;
    box-shadow: 0 10px 32px rgba(201,168,75,.5), 0 0 0 10px rgba(201,168,75,.12);
}
.tk-step h3 { font-family: var(--tk-font); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.tk-step p { font-size: .86rem; color: var(--tk-text-muted); margin: 0; line-height: 1.6; }
.tk-step-arrow { font-size: 2rem; color: var(--tk-copper-light); align-self: center; font-weight: 300; }

/* ═══════════════════════════════════════════════════════════
   ROUTE CARDS
   ═══════════════════════════════════════════════════════════ */
.tk-route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tk-route-card {
    position: relative; aspect-ratio: 3/4;
    border-radius: 24px; overflow: hidden;
    background-size: cover; background-position: center;
    text-decoration: none; transition: all .45s var(--tk-ease);
    box-shadow: var(--tk-shadow-lg);
    border: 1.5px solid transparent;
}
.tk-route-card:hover {
    transform: translateY(-14px) scale(1.025);
    box-shadow: 0 32px 80px rgba(13,43,78,.22), 0 0 0 2px rgba(201,168,75,.4);
    border-color: rgba(201,168,75,.4);
}
.tk-route-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 30px;
    background: linear-gradient(180deg, transparent 10%, rgba(5,23,42,.92));
}
.tk-route-overlay h3 { color: #fff; font-size: 1.7rem; margin-bottom: 8px; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
.tk-route-overlay p { color: rgba(255,255,255,.7); font-size: .86rem; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.tk-faq-list { display: flex; flex-direction: column; gap: 14px; }
.tk-faq-item {
    background: var(--tk-white); border: 1px solid var(--tk-border-light);
    border-radius: var(--tk-r-lg); overflow: hidden; transition: all .3s var(--tk-ease-smooth);
    box-shadow: var(--tk-shadow-sm);
    border-left: 3px solid var(--tk-copper);
}
.tk-faq-item:hover { border-color: var(--tk-copper); box-shadow: var(--tk-shadow-md); }
.tk-faq-item summary {
    padding: 20px 26px; font-weight: 600; cursor: pointer; list-style: none;
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    transition: all var(--tk-t); font-size: .95rem;
}
.tk-faq-item summary:hover { color: var(--tk-copper); }
.tk-faq-item summary::-webkit-details-marker { display: none; }
.tk-faq-item summary::after {
    content: '+'; font-size: 1.5rem; font-weight: 300;
    color: var(--tk-copper); transition: transform var(--tk-t); flex-shrink: 0;
}
.tk-faq-item[open] summary::after { content: '−'; }
.tk-faq-item[open] summary { color: var(--tk-ocean); border-bottom: 1px solid var(--tk-border-light); }
.tk-faq-item p {
    padding: 18px 26px; margin: 0; color: var(--tk-text-secondary);
    line-height: 1.75; font-size: .93rem;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.tk-cta-section {
    padding: 110px 0;
    background: var(--tk-ocean-gradient);
    position: relative; overflow: hidden;
}
.tk-cta-section .tk-cta-mesh {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,168,75,.06), transparent);
}
.tk-cta-section::before {
    content: ''; position: absolute; top: -30%; left: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(193,127,89,.18), transparent 60%);
    border-radius: 50%; pointer-events: none;
    animation: ctaGlow 6s ease-in-out infinite alternate;
}
.tk-cta-section::after {
    content: ''; position: absolute; bottom: -20%; right: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(26,95,138,.2), transparent 60%);
    border-radius: 50%; pointer-events: none;
    animation: ctaGlow 6s ease-in-out infinite alternate-reverse;
}
@keyframes ctaGlow {
    from { opacity: .5; transform: scale(1); }
    to { opacity: 1; transform: scale(1.15); }
}
.tk-cta-box { text-align: center; max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.tk-cta-box h2 { color: #fff; font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 18px; }
.tk-cta-box p { color: rgba(255,255,255,.7); font-size: 1.08rem; margin-bottom: 40px; line-height: 1.75; }
.tk-cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.tk-cta-buttons .tk-btn-primary {
    background: linear-gradient(135deg, var(--tk-copper), var(--tk-copper-dark));
    box-shadow: 0 6px 28px rgba(193,127,89,.45);
    padding: 17px 38px; font-size: 1.02rem;
}
.tk-cta-buttons .tk-btn-primary:hover {
    background: linear-gradient(135deg, var(--tk-copper-dark), #8e5730);
    box-shadow: 0 10px 40px rgba(193,127,89,.6), 0 0 0 4px rgba(193,127,89,.15);
}
.tk-cta-buttons .tk-btn-outline { border-color: rgba(255,255,255,.35); color: #fff; padding: 17px 38px; font-size: 1.02rem; }
.tk-cta-buttons .tk-btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* ═══════════════════════════════════════════════════════════
   PAGE HEADER (Yachts, Blog, Booking)
   ═══════════════════════════════════════════════════════════ */
.tk-page-header {
    padding: 150px 0 60px;
    background: var(--tk-ocean-gradient);
    color: #fff; text-align: center;
    position: relative; overflow: hidden;
}
.tk-page-header::before {
    content: ''; position: absolute; top: -15%; right: -8%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(193,127,89,.12), transparent 65%); border-radius: 50%;
    pointer-events: none;
}
.tk-page-header::after {
    content: ''; position: absolute; bottom: -20%; left: -5%; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(26,95,138,.1), transparent 60%); border-radius: 50%;
    pointer-events: none;
}
.tk-page-header h1 { color: #fff; margin-bottom: 12px; }
.tk-page-header p, .tk-subtitle { color: rgba(255,255,255,.65); font-size: 1.05rem; margin: 0 0 22px; }
.tk-page-header .tk-badge { margin-bottom: 14px; }
.tk-page-stats { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.tk-page-stats .tk-stat-chip {
    background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12);
    color: rgba(255,255,255,.75);
}
.tk-page-header-compact { padding: 110px 0 36px; }

/* ═══════════════════════════════════════════════════════════
   FILTER BAR
   ═══════════════════════════════════════════════════════════ */
.tk-filter-bar {
    display: flex; align-items: flex-end; gap: 14px;
    padding: 26px; background: var(--tk-white);
    border-radius: var(--tk-r-lg); border: 1px solid var(--tk-border-light);
    box-shadow: var(--tk-shadow-lg); margin-top: -36px; margin-bottom: 36px;
    flex-wrap: wrap; position: relative; z-index: 10;
}
.tk-filter-field { flex: 1; min-width: 145px; }
.tk-filter-field label {
    display: block; font-size: .78rem; font-weight: 600;
    color: var(--tk-text-muted); margin-bottom: 7px;
}
.tk-filter-field input, .tk-filter-field select {
    width: 100%; padding: 11px 16px;
    border: 1px solid var(--tk-border); border-radius: var(--tk-r);
    font-family: var(--tk-font); font-size: .9rem;
    background: var(--tk-sand); color: var(--tk-text); transition: all var(--tk-t);
}
.tk-filter-field input:focus, .tk-filter-field select:focus {
    outline: none; border-color: var(--tk-copper);
    box-shadow: 0 0 0 3px var(--tk-copper-glow); background: var(--tk-white);
}
.tk-filter-bar .tk-btn-primary { white-space: nowrap; }

/* ═══════════════════════════════════════════════════════════
   EMPTY STATE
   ═══════════════════════════════════════════════════════════ */
.tk-empty-state {
    grid-column: 1 / -1; text-align: center;
    padding: 64px 28px; background: var(--tk-white);
    border-radius: var(--tk-r-lg); border: 2px dashed var(--tk-border);
}
.tk-empty-state span { font-size: 3rem; display: block; margin-bottom: 16px; }
.tk-empty-state h3 { font-family: var(--tk-font); margin-bottom: 8px; }
.tk-empty-state p { color: var(--tk-text-muted); }

/* ═══════════════════════════════════════════════════════════
   YACHT DETAIL PAGE
   ═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   YACHT DETAIL 2026 — Premium Redesign
   ═══════════════════════════════════════════════════════════ */

/* ─── Hero Section ─── */
.tk-d-hero {
    padding: 90px 0 0; background: var(--tk-cream);
}
.tk-d-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: .82rem; color: var(--tk-text-muted); margin-bottom: 20px;
}
.tk-d-breadcrumb a { color: var(--tk-text-secondary); text-decoration: none; transition: color var(--tk-t); }
.tk-d-breadcrumb a:hover { color: var(--tk-copper); }
.tk-d-breadcrumb span { color: var(--tk-text); font-weight: 500; }

.tk-d-title-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 20px; margin-bottom: 24px;
}
.tk-d-title-info h1 {
    font-family: var(--tk-font-display); font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700; color: var(--tk-text); margin: 6px 0 8px; line-height: 1.2;
}
.tk-d-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.tk-d-type-badge {
    display: inline-flex; padding: 4px 14px; border-radius: var(--tk-r-full);
    background: var(--tk-ocean); color: #fff; font-size: .72rem; font-weight: 600;
    letter-spacing: .04em; text-transform: uppercase;
}
.tk-d-featured-badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 14px; border-radius: var(--tk-r-full);
    background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff;
    font-size: .72rem; font-weight: 600;
}
.tk-d-location {
    display: flex; align-items: center; gap: 6px;
    color: var(--tk-text-secondary); font-size: .92rem; margin: 0;
}
.tk-d-location svg { flex-shrink: 0; opacity: .6; }
.tk-d-sep { color: var(--tk-border); }
.tk-d-title-actions { display: flex; gap: 8px; flex-shrink: 0; }
.tk-d-action-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid var(--tk-border); background: var(--tk-white);
    color: var(--tk-text-secondary); cursor: pointer; transition: all var(--tk-t);
}
.tk-d-action-btn:hover { border-color: var(--tk-copper); color: var(--tk-copper); background: var(--tk-copper-glow); }
.tk-d-action-btn.is-liked { color: #e74c3c; border-color: #e74c3c; background: rgba(231,76,60,.08); }

/* ─── Bento Gallery Grid ─── */
.tk-d-bento {
    display: flex; gap: 6px; height: 440px;
    border-radius: var(--tk-r-xl); overflow: hidden;
}
.tk-d-bento-item {
    position: relative; overflow: hidden; cursor: pointer;
    flex: 1; min-width: 0;
}
.tk-d-bento-item.is-main { flex: 2; }
.tk-d-bento-item img {
    width: 100%; height: 100% !important; object-fit: cover;
    transition: transform .5s var(--tk-ease);
}
.tk-d-bento-item:hover img { transform: scale(1.05); }

/* ─── Image Watermark ─── */
.tk-d-watermark {
    position: absolute; bottom: 10px; right: 10px; z-index: 2;
    display: flex; align-items: center; gap: 5px;
    padding: 4px 10px 4px 5px;
    background: rgba(0,0,0,.4);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    border-radius: 6px; pointer-events: none;
    opacity: .65; transition: opacity .3s;
}
.tk-d-bento-item:hover .tk-d-watermark { opacity: .9; }
.tk-d-watermark svg { flex-shrink: 0; }
.tk-d-watermark span {
    font-size: .6rem; font-weight: 700; color: rgba(255,255,255,.9);
    letter-spacing: .03em; white-space: nowrap; line-height: 1;
}
.tk-d-bento-more {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: rgba(7,30,48,.55); color: #fff;
    font-size: .88rem; font-weight: 600; border: none; cursor: pointer;
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    transition: background var(--tk-t);
}
.tk-d-bento-more:hover { background: rgba(7,30,48,.7); }

/* ─── Sticky Specs Bar ─── */
.tk-d-specs-bar {
    position: sticky; top: 64px; z-index: 50;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--tk-border-light);
    padding: 12px 0; box-shadow: 0 4px 16px rgba(0,0,0,.06);
    transition: all .3s;
}
.tk-d-specs-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.tk-d-specs-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.tk-d-spec-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 16px; border-radius: var(--tk-r-full);
    background: var(--tk-sand); color: var(--tk-text-secondary);
    font-size: .82rem; font-weight: 500;
    border: 1px solid transparent; transition: all var(--tk-t);
}
.tk-d-spec-pill:hover { border-color: var(--tk-border); background: var(--tk-white); }
.tk-d-spec-pill svg { flex-shrink: 0; opacity: .55; }
.tk-d-specs-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.tk-d-bar-price {
    font-family: var(--tk-font-display); font-size: 1.4rem;
    font-weight: 700; color: var(--tk-text);
}
.tk-d-bar-price small { font-size: .78rem; font-weight: 400; color: var(--tk-text-muted); }

/* ─── Layout ─── */
.tk-d-layout {
    display: grid; grid-template-columns: 1fr 400px;
    gap: 40px; margin: 40px 0 60px; align-items: start;
}
.tk-d-content { display: flex; flex-direction: column; gap: 0; }
.tk-d-sidebar { display: flex; flex-direction: column; gap: 20px; }
.tk-d-sidebar-sticky { position: sticky; top: 140px; display: flex; flex-direction: column; gap: 20px; }

/* ─── Sections ─── */
.tk-d-section {
    padding: 32px 0;
    border-bottom: 1px solid var(--tk-border-light);
}
.tk-d-section:last-child { border-bottom: none; }
.tk-d-section-header {
    display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.tk-d-section-icon {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--tk-copper-glow), rgba(193,127,89,.12));
    color: var(--tk-copper);
    border: 1px solid rgba(193,127,89,.12);
    box-shadow: 0 2px 8px rgba(193,127,89,.08);
}
.tk-d-section-icon.is-warn {
    background: linear-gradient(135deg, rgba(217,119,6,.12), rgba(217,119,6,.06));
    color: #d97706;
}
.tk-d-section-header h2 {
    font-family: var(--tk-font-display); font-size: 1.35rem;
    font-weight: 700; color: var(--tk-text); margin: 0;
}
.tk-d-about-text {
    font-size: .94rem; color: var(--tk-text-secondary);
    line-height: 1.8; white-space: pre-line;
}
.tk-d-note {
    display: flex; align-items: center; gap: 8px;
    margin-top: 16px; padding: 12px 16px;
    background: var(--tk-sand); border-radius: var(--tk-r);
    font-size: .84rem; color: var(--tk-text-muted);
}
.tk-d-note svg { flex-shrink: 0; opacity: .5; }

/* ─── Highlights Grid ─── */
.tk-d-highlights {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.tk-d-highlight-card {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; padding: 26px 16px;
    background: var(--tk-white); border: 1px solid var(--tk-border-light);
    border-radius: var(--tk-r-lg); transition: all .3s var(--tk-ease);
    box-shadow: var(--tk-shadow-sm);
}
.tk-d-highlight-card:hover {
    border-color: var(--tk-copper-light);
    box-shadow: 0 8px 28px rgba(193,127,89,.14);
    transform: translateY(-4px);
}
.tk-d-highlight-icon {
    display: flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 15px;
    background: linear-gradient(135deg, var(--tk-copper-glow), rgba(193,127,89,.1));
    border: 1px solid rgba(193,127,89,.1);
    color: var(--tk-copper); margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(193,127,89,.08);
}
.tk-d-highlight-card strong { font-size: 1.05rem; color: var(--tk-text); margin-bottom: 2px; }
.tk-d-highlight-card span { font-size: .78rem; color: var(--tk-text-muted); }

/* ─── Tabs ─── */
.tk-d-tab-nav {
    display: flex; gap: 4px; margin-bottom: 24px;
    background: var(--tk-sand); border-radius: var(--tk-r); padding: 4px;
}
.tk-d-tab-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: var(--tk-r);
    border: none; background: transparent; cursor: pointer;
    font-size: .88rem; font-weight: 500; color: var(--tk-text-secondary);
    transition: all var(--tk-t);
}
.tk-d-tab-btn:hover { color: var(--tk-text); }
.tk-d-tab-btn.is-active {
    background: var(--tk-white); color: var(--tk-text);
    box-shadow: var(--tk-shadow-sm); font-weight: 600;
}
.tk-d-tab-panel { display: none; }
.tk-d-tab-panel.is-active { display: block; }
.tk-d-feature-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.tk-d-feature-item {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; border-radius: var(--tk-r);
    background: var(--tk-sand); font-size: .88rem; color: var(--tk-text-secondary);
    transition: background var(--tk-t);
}
.tk-d-feature-item:hover { background: var(--tk-sand-dark); }
.tk-d-feature-item svg { flex-shrink: 0; }

/* ─── Accordion ─── */
.tk-d-accordion {
    border: 1px solid rgba(217,119,6,.15); border-radius: var(--tk-r-lg);
    background: rgba(254,247,233,.4); overflow: hidden;
}
.tk-d-accordion-trigger {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px; cursor: pointer; list-style: none;
}
.tk-d-accordion-trigger::-webkit-details-marker { display: none; }
.tk-d-accordion-arrow { transition: transform .3s; flex-shrink: 0; color: var(--tk-text-muted); }
.tk-d-accordion[open] > .tk-d-accordion-trigger .tk-d-accordion-arrow { transform: rotate(180deg); }
.tk-d-accordion-body { padding: 0 20px 20px; }
.tk-d-rules-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.tk-d-rules-list li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px 14px; border-radius: var(--tk-r);
    background: rgba(217,119,6,.06); color: #92400e;
    font-size: .88rem; line-height: 1.5;
}
.tk-d-rules-list li svg { margin-top: 2px; flex-shrink: 0; }

/* ─── Owner ─── */
.tk-d-owner {
    display: flex; align-items: center; gap: 16px;
}
.tk-d-owner-avatar {
    display: flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--tk-sand), var(--tk-sand-dark));
    color: var(--tk-text-muted);
}
.tk-d-owner-info {
    display: flex; flex-direction: column; gap: 2px;
}
.tk-d-owner-info strong { font-size: .95rem; color: var(--tk-text); }
.tk-d-owner-info span { font-size: .84rem; color: var(--tk-text-secondary); }
.tk-d-muted { color: var(--tk-text-muted) !important; font-size: .8rem; }

/* ─── Map ─── */
.tk-d-map-wrap {
    border-radius: var(--tk-r-lg); overflow: hidden;
    border: 1px solid var(--tk-border-light);
}

/* ─── Sidebar Cards ─── */
.tk-d-card {
    background: var(--tk-white); border: 1px solid var(--tk-border-light);
    border-radius: var(--tk-r-lg); padding: 24px;
}
.tk-d-card h3 {
    display: flex; align-items: center; gap: 10px;
    font-size: 1rem; font-weight: 600; color: var(--tk-text);
    margin: 0 0 18px; padding-bottom: 14px;
    border-bottom: 1px solid var(--tk-border-light);
}
.tk-d-card h3 svg { flex-shrink: 0; color: var(--tk-copper); }

/* ─── Booking Card ─── */
.tk-d-booking-card {
    background: var(--tk-ocean-gradient);
    border-radius: var(--tk-r-xl); padding: 32px; color: #fff;
    border: 1px solid rgba(201,168,75,.12); position: relative; overflow: hidden;
    box-shadow: 0 20px 64px rgba(7,26,51,.4), inset 0 1px 0 rgba(201,168,75,.1);
}
.tk-d-booking-card::before {
    content: ''; position: absolute; top: -30%; right: -20%;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(193,127,89,.1); filter: blur(40px);
}
.tk-d-booking-price { position: relative; margin-bottom: 20px; }
.tk-d-price-row { display: flex; align-items: baseline; gap: 4px; }
.tk-d-price-amount {
    font-family: var(--tk-font-display); font-size: 2.8rem;
    font-weight: 700; line-height: 1;
}
.tk-d-price-unit { font-size: 1rem; opacity: .6; }
.tk-d-price-weekly { font-size: .88rem; opacity: .5; margin-top: 6px; }
.tk-d-book-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 17px; border-radius: var(--tk-r);
    background: linear-gradient(135deg, var(--tk-copper), var(--tk-copper-dark));
    color: #fff; font-weight: 700;
    font-size: .95rem; text-decoration: none; border: none;
    cursor: pointer; transition: all var(--tk-t);
    box-shadow: 0 6px 24px rgba(193,127,89,.4);
    letter-spacing: .01em;
}
.tk-d-book-btn:hover {
    background: linear-gradient(135deg, var(--tk-copper-dark), #8e5730);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(193,127,89,.55), 0 0 0 4px rgba(193,127,89,.1);
}
.tk-d-trust-row {
    display: flex; flex-direction: column; gap: 8px;
    margin-top: 18px; padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.tk-d-trust-row span {
    display: flex; align-items: center; gap: 8px;
    font-size: .82rem; opacity: .65;
}
.tk-d-trust-row svg { flex-shrink: 0; }
.tk-d-booking-note {
    margin: 16px 0 0; font-size: .78rem; opacity: .4;
    line-height: 1.5;
}

/* ─── Spec List ─── */
.tk-d-spec-list { display: flex; flex-direction: column; }
.tk-d-spec-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; border-bottom: 1px solid var(--tk-border-light);
    font-size: .86rem;
}
.tk-d-spec-row:last-child { border-bottom: none; }
.tk-d-spec-row span { color: var(--tk-text-muted); }
.tk-d-spec-row strong { color: var(--tk-text); font-weight: 600; }

/* ─── Season Pricing ─── */
.tk-d-season-list { display: flex; flex-direction: column; gap: 10px; }
.tk-d-season-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 16px; background: var(--tk-sand);
    border-radius: var(--tk-r); transition: all var(--tk-t);
}
.tk-d-season-row:hover { background: var(--tk-sand-dark); }
.tk-d-season-info strong { display: block; font-size: .88rem; color: var(--tk-text); }
.tk-d-season-info small { font-size: .76rem; color: var(--tk-text-muted); }
.tk-d-season-price {
    font-weight: 700; font-size: .95rem; color: var(--tk-copper);
    white-space: nowrap;
}
.tk-d-season-price small { font-size: .72rem; font-weight: 400; color: var(--tk-text-muted); }

/* ─── Min/Max Card ─── */
.tk-d-minmax-card { padding: 18px 24px; }
.tk-d-minmax-inner {
    display: flex; align-items: center; gap: 10px;
    font-size: .9rem; color: var(--tk-text-secondary);
}
.tk-d-minmax-inner strong { color: var(--tk-copper); font-size: 1rem; }

/* ─── Similar Boats ─── */
.tk-d-similar { margin-bottom: 60px; padding-top: 40px; border-top: 1px solid var(--tk-border-light); }
.tk-d-similar-scroll {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.tk-d-similar-card {
    background: var(--tk-white); border: 1px solid var(--tk-border-light);
    border-radius: var(--tk-r-lg); overflow: hidden;
    transition: all .3s var(--tk-ease);
    box-shadow: var(--tk-shadow-sm);
}
.tk-d-similar-card:hover {
    border-color: var(--tk-copper-light);
    box-shadow: var(--tk-shadow-lg);
    transform: translateY(-6px);
}
.tk-d-similar-img { position: relative; height: 200px; overflow: hidden; }
.tk-d-similar-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s var(--tk-ease);
}
.tk-d-similar-card:hover .tk-d-similar-img img { transform: scale(1.08); }
.tk-d-similar-price {
    position: absolute; bottom: 12px; right: 12px;
    padding: 6px 14px; border-radius: var(--tk-r-full);
    background: rgba(7,30,48,.8); color: #fff;
    font-weight: 700; font-size: .9rem;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.tk-d-similar-price small { font-size: .72rem; font-weight: 400; opacity: .65; }
.tk-d-similar-body { padding: 18px 20px; }
.tk-d-similar-body h4 { margin: 0 0 6px; font-size: 1rem; font-weight: 600; }
.tk-d-similar-body h4 a { color: var(--tk-text); text-decoration: none; transition: color var(--tk-t); }
.tk-d-similar-body h4 a:hover { color: var(--tk-copper); }
.tk-d-similar-body > p {
    display: flex; align-items: center; gap: 6px;
    font-size: .82rem; color: var(--tk-text-muted); margin: 0 0 14px;
}
.tk-d-similar-body > p svg { flex-shrink: 0; opacity: .5; }
.tk-d-similar-actions { display: flex; gap: 8px; }

/* ─── RESPONSIVE: Tablet ─── */
@media (max-width: 1024px) {
    .tk-d-layout { grid-template-columns: 1fr; gap: 32px; }
    .tk-d-sidebar-sticky { position: static; }
    .tk-d-bento { height: 320px; }
    .tk-d-highlights { grid-template-columns: repeat(2, 1fr); }
    .tk-d-similar-scroll { grid-template-columns: repeat(2, 1fr); }
}

/* ─── RESPONSIVE: Mobile ─── */
@media (max-width: 768px) {
    .tk-d-hero { padding: 70px 0 0; }
    .tk-d-title-row { flex-direction: column; gap: 12px; }
    .tk-d-title-actions { align-self: flex-start; }
    .tk-d-bento {
        height: auto; flex-wrap: wrap;
    }
    .tk-d-bento-item { flex: 1 1 calc(50% - 3px); height: 180px; }
    .tk-d-bento-item.is-main { flex: 1 1 100%; height: 220px; }
    .tk-d-bento-item:nth-child(n+5) { display: none; }
    .tk-d-bento-item:nth-child(4) .tk-d-bento-more { display: flex; }
    .tk-d-watermark { bottom: 6px; right: 6px; padding: 3px 7px 3px 4px; }
    .tk-d-watermark svg { width: 16px; height: 16px; }
    .tk-d-watermark span { font-size: .5rem; }
    .tk-d-specs-inner { flex-direction: column; gap: 12px; }
    .tk-d-specs-pills { justify-content: center; }
    .tk-d-specs-cta { width: 100%; justify-content: center; }
    .tk-d-highlights { grid-template-columns: 1fr 1fr; gap: 10px; }
    .tk-d-highlight-card { padding: 16px 10px; }
    .tk-d-highlight-icon { width: 38px; height: 38px; }
    .tk-d-feature-grid { grid-template-columns: 1fr; }
    .tk-d-tab-btn { padding: 8px 14px; font-size: .82rem; }
    .tk-d-price-amount { font-size: 2.2rem; }
    .tk-d-similar-scroll { grid-template-columns: 1fr; }
    .tk-d-bar-price { font-size: 1.15rem; }
}

/* ═══════════════════════════════════════════════════════════
   BOOKING PAGE
   ═══════════════════════════════════════════════════════════ */
.tk-booking-header {
    display: flex; justify-content: space-between; align-items: center;
    gap: 20px; flex-wrap: wrap;
}
.tk-booking-header-info h1 { color: #fff; margin-bottom: 4px; }
.tk-booking-header-info p { color: rgba(255,255,255,.55); margin: 0; }
.tk-booking-header-price { display: flex; align-items: baseline; gap: 4px; color: #fff; }
.tk-booking-header-price .tk-price-amount {
    font-family: var(--tk-font-display); font-size: 2rem; font-weight: 700;
}
.tk-availability-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 18px; flex-wrap: wrap; gap: 14px;
}
.tk-availability-legend {
    display: flex; gap: 22px; flex-wrap: wrap; margin-bottom: 18px;
    font-size: .84rem; color: var(--tk-text-secondary);
}
.tk-availability-legend span { display: flex; align-items: center; gap: 7px; }
.tk-availability-legend .dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; }
.tk-availability-legend .dot-available { background: var(--tk-success); }
.tk-availability-legend .dot-unavailable { background: var(--tk-danger); }
.tk-availability-legend .dot-selected { background: var(--tk-copper); }
.tk-booking-layout {
    display: grid; grid-template-columns: 1fr 380px;
    gap: 32px; margin-top: 36px; align-items: start;
}
.tk-booking-form { display: flex; flex-direction: column; gap: 24px; }
.tk-booking-sidebar { display: flex; flex-direction: column; gap: 24px; }
.tk-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tk-form-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.tk-form-group { display: flex; flex-direction: column; gap: 7px; }
.tk-form-group label { font-size: .84rem; font-weight: 600; color: var(--tk-text-secondary); }
.tk-form-group input, .tk-form-group select, .tk-form-group textarea {
    padding: 13px 18px; border: 1px solid var(--tk-border); border-radius: var(--tk-r);
    font-family: var(--tk-font); font-size: .92rem;
    color: var(--tk-text); background: var(--tk-sand); transition: all var(--tk-t);
}
.tk-form-group input:focus, .tk-form-group select:focus, .tk-form-group textarea:focus {
    outline: none; border-color: var(--tk-copper);
    box-shadow: 0 0 0 3px var(--tk-copper-glow); background: var(--tk-white);
}
.tk-extras-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tk-extra-item {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 18px; background: var(--tk-sand);
    border: 1px solid var(--tk-border-light); border-radius: var(--tk-r);
    cursor: pointer; transition: all var(--tk-t);
}
.tk-extra-item:hover { border-color: var(--tk-copper); background: var(--tk-copper-glow); }
.tk-extra-item input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--tk-copper); flex-shrink: 0; }
.tk-extra-info { display: flex; flex-direction: column; gap: 2px; }
.tk-extra-info strong { font-size: .9rem; }
.tk-extra-info small { font-size: .8rem; color: var(--tk-copper); font-weight: 600; }
.tk-summary-list { display: flex; flex-direction: column; margin-bottom: 14px; }
.tk-summary-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 11px 0; border-bottom: 1px solid var(--tk-border-light); font-size: .87rem;
}
.tk-summary-row:last-child { border-bottom: none; }
.tk-summary-total {
    padding-top: 16px; margin-top: 4px;
    border-top: 2px solid var(--tk-copper); font-size: 1rem;
}
.tk-summary-total strong { font-size: 1.2rem; color: var(--tk-copper); }
.tk-estimator {
    border: 2px solid var(--tk-copper-light);
    background: linear-gradient(180deg, var(--tk-copper-glow), var(--tk-white));
}
.tk-estimator h3 { color: var(--tk-ocean); }
.tk-estimator-rows { margin-bottom: 14px; }
.tk-alert { padding: 16px 22px; border-radius: var(--tk-r); font-size: .9rem; font-weight: 500; }
.tk-alert-success { background: #e8f8ee; color: #1a7a3a; border: 1px solid #b8e6c8; }
.tk-alert-error { background: #fef0f0; color: #c53030; border: 1px solid #f5c6c6; }
.availability-suggest {
    border: 2px solid var(--tk-copper); background: #fffdf5;
    margin-top: 1rem; padding: 1rem; border-radius: var(--tk-r);
}

/* ═══════════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════════ */
.tk-blog-featured {
    display: block; text-decoration: none; border-radius: var(--tk-r-lg);
    overflow: hidden; transition: all .4s var(--tk-ease);
}
.tk-blog-featured:hover { transform: translateY(-4px); box-shadow: var(--tk-shadow-xl); }
.tk-blog-featured-img {
    position: relative; height: 500px; background-size: cover; background-position: center;
}
.tk-blog-featured-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(7,30,48,.85));
    display: flex; align-items: flex-end;
}
.tk-blog-featured-content { padding: 44px; max-width: 700px; }
.tk-blog-featured-content h2 { color: #fff; font-size: 2rem; margin: 14px 0; }
.tk-blog-featured-content p { color: rgba(255,255,255,.65); margin: 0 0 22px; line-height: 1.65; }
.tk-blog-meta {
    display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
    font-size: .82rem; color: rgba(255,255,255,.55);
}
.tk-blog-categories { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 28px 0; }
.tk-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tk-blog-card {
    background: var(--tk-white); border-radius: 22px; overflow: hidden;
    border: 1px solid var(--tk-border-light); transition: all .38s var(--tk-ease);
    box-shadow: var(--tk-shadow-sm);
    position: relative;
}
.tk-blog-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 2;
    background: var(--tk-gold-gradient);
}
.tk-blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 72px rgba(13,43,78,.15), 0 0 0 1px rgba(201,168,75,.2);
    border-color: rgba(201,168,75,.2);
}
.tk-blog-card a { text-decoration: none; color: inherit; }
.tk-blog-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.tk-blog-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s var(--tk-ease);
}
.tk-blog-card:hover .tk-blog-card-img img { transform: scale(1.06); }
.tk-blog-card-body { padding: 22px; }
.tk-blog-card-body .tk-blog-meta { color: var(--tk-text-muted); margin-bottom: 10px; }
.tk-blog-card-body h3 {
    font-family: var(--tk-font); font-size: 1.05rem; font-weight: 700;
    margin-bottom: 8px; color: var(--tk-text);
    display: -webkit-box; line-clamp: 2; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.tk-blog-card-body p {
    font-size: .86rem; color: var(--tk-text-muted); margin: 0 0 14px;
    display: -webkit-box; line-clamp: 2; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.tk-read-more { font-size: .84rem; font-weight: 600; color: var(--tk-copper); transition: color var(--tk-t); }
.tk-blog-card:hover .tk-read-more { color: var(--tk-copper-dark); }

/* ─── BLOG DETAIL ─── */
.tk-article-hero {
    position: relative; height: 60vh; min-height: 380px;
    background-size: cover; background-position: center;
}
.tk-article-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 15%, rgba(7,30,48,.85));
    display: flex; align-items: flex-end; padding-bottom: 52px;
}
.tk-article-hero-overlay h1 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 14px 0 0; }
.tk-article-hero-overlay .tk-blog-meta { margin-bottom: 0; }
.tk-tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.tk-tag {
    padding: 5px 14px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.65);
    border-radius: var(--tk-r-full); font-size: .8rem;
}
.tk-article-layout {
    display: grid; grid-template-columns: 1fr 340px;
    gap: 40px; align-items: start;
}
.tk-article-main { display: flex; flex-direction: column; gap: 24px; }
.tk-article-content {
    font-size: 1.02rem; line-height: 1.85; color: var(--tk-text-secondary);
    background: var(--tk-white); padding: 36px;
    border-radius: var(--tk-r-lg); border: 1px solid var(--tk-border-light);
}
.tk-article-actions { display: flex; gap: 12px; }
.tk-article-sidebar { display: flex; flex-direction: column; gap: 24px; }
.tk-sidebar-posts { display: flex; flex-direction: column; gap: 12px; }
.tk-sidebar-post {
    display: flex; gap: 14px; text-decoration: none;
    padding: 10px; border-radius: var(--tk-r); transition: background var(--tk-t);
}
.tk-sidebar-post:hover { background: var(--tk-sand); }
.tk-sidebar-post img { width: 64px; height: 48px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.tk-sidebar-post strong {
    display: block; font-size: .87rem; color: var(--tk-text); margin-bottom: 3px;
    display: -webkit-box; line-clamp: 2; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.tk-sidebar-post small { font-size: .78rem; color: var(--tk-text-muted); }

/* ═══════════════════════════════════════════════════════════
   PRE-FOOTER CTA
   ═══════════════════════════════════════════════════════════ */
.tk-prefooter {
    background: var(--tk-ocean-gradient);
    padding: 72px 0; position: relative; overflow: hidden;
    box-shadow: 0 -8px 40px rgba(7,26,51,.12);
    border-top: 2px solid rgba(201,168,75,.35);
}
.tk-prefooter::before {
    content: ''; position: absolute; top: -50%; right: -15%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(193,127,89,.15), transparent 65%); border-radius: 50%;
}
.tk-prefooter::after {
    content: ''; position: absolute; bottom: -40%; left: -10%; width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(26,95,138,.12), transparent 70%); border-radius: 50%;
}
.tk-prefooter-inner {
    max-width: var(--tk-container); margin: 0 auto; padding: 0 28px;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
    position: relative; z-index: 1;
}
.tk-prefooter-content h3 {
    color: #fff; font-size: 1.6rem; margin-bottom: 8px;
    font-family: var(--tk-font-display); font-weight: 700;
}
.tk-prefooter-content p { color: rgba(255,255,255,.55); font-size: .95rem; margin: 0; max-width: 480px; }
.tk-prefooter-actions { display: flex; gap: 12px; flex-shrink: 0; }
.tk-btn-outline-light { border-color: rgba(255,255,255,.25); color: #fff !important; }
.tk-btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.tk-footer { background: var(--tk-ocean-deep); color: rgba(255,255,255,.65); padding-top: 80px; }
.tk-footer-inner { max-width: var(--tk-container); margin: 0 auto; padding: 0 28px; }
.tk-footer-grid {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px; padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.tk-footer-brand .tk-footer-logo {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 20px;
}
.tk-footer-logo-img { height: 36px; width: auto; max-width: 180px; object-fit: contain; display: block; }
.tk-footer-logo strong {
    display: block; font-family: var(--tk-font-display); font-size: 1.15rem;
    color: #fff; line-height: 1.2;
}
.tk-footer-logo small { display: block; font-size: .72rem; color: rgba(255,255,255,.35); letter-spacing: .03em; }
.tk-footer-brand p { font-size: .88rem; line-height: 1.7; margin: 0 0 22px; color: rgba(255,255,255,.5); }
.tk-footer-certifications { display: flex; flex-direction: column; gap: 10px; }
.tk-cert-item {
    display: flex; align-items: center; gap: 10px;
    font-size: .82rem; color: rgba(255,255,255,.45);
}
.tk-cert-item svg { color: var(--tk-copper-light); opacity: .6; flex-shrink: 0; }
.tk-footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.tk-footer-badges span {
    padding: 6px 14px; background: rgba(193,127,89,.08);
    border-radius: var(--tk-r-full); font-size: .76rem; color: var(--tk-copper-light);
}
.tk-footer-col h4 {
    color: #fff; font-family: var(--tk-font); font-weight: 700;
    font-size: .78rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 24px;
    position: relative; padding-bottom: 12px;
}
.tk-footer-col h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 24px; height: 2px; background: var(--tk-copper); border-radius: 2px;
}
.tk-footer-nav { display: flex; flex-direction: column; gap: 0; }
.tk-footer-nav a {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px; font-size: .85rem;
    color: rgba(255,255,255,.5); transition: all var(--tk-t); text-decoration: none;
    border-radius: var(--tk-r-full);
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.03);
    margin-bottom: 6px;
}
.tk-footer-nav a svg { opacity: .3; flex-shrink: 0; transition: all var(--tk-t); }
.tk-footer-nav a:hover { color: #fff; background: rgba(193,127,89,.15); border-color: var(--tk-copper); transform: none; }
.tk-footer-nav a:hover svg { opacity: .8; color: var(--tk-copper-light); }
.tk-footer-col a {
    display: block; padding: 5px 0; font-size: .87rem;
    color: rgba(255,255,255,.5); transition: color var(--tk-t); text-decoration: none;
}
.tk-footer-col a:hover { color: var(--tk-copper-light); }
.tk-footer-col p { font-size: .87rem; margin: 0 0 6px; }
.tk-footer-contact { display: flex; flex-direction: column; gap: 12px; }
.tk-footer-contact-item {
    display: flex; align-items: center; gap: 10px;
    font-size: .87rem; color: rgba(255,255,255,.5); text-decoration: none;
    transition: color var(--tk-t);
}
.tk-footer-contact-item svg { color: var(--tk-copper-light); opacity: .5; flex-shrink: 0; }
a.tk-footer-contact-item:hover { color: var(--tk-copper-light); }
a.tk-footer-contact-item:hover svg { opacity: .8; }
.tk-whatsapp-btn {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 18px; padding: 11px 24px;
    background: #25d366; color: #fff !important;
    font-weight: 600; font-size: .84rem;
    border-radius: var(--tk-r-full); text-decoration: none; transition: all var(--tk-t);
    box-shadow: 0 4px 16px rgba(37,211,102,.2);
}
.tk-whatsapp-btn svg { flex-shrink: 0; }
.tk-whatsapp-btn:hover { background: #22bc5b; transform: translateY(-2px); color: #fff !important; box-shadow: 0 8px 24px rgba(37,211,102,.3); }
.tk-footer-social-bar {
    display: flex; justify-content: center; align-items: center;
    padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.tk-footer-social-links { display: flex; gap: 12px; }
.tk-footer-social-links a {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.5); transition: all .3s var(--tk-ease); text-decoration: none;
}
.tk-footer-social-links a:hover {
    background: var(--tk-copper); border-color: var(--tk-copper);
    color: #fff; transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(193,127,89,.3);
}
.tk-footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 26px 0; flex-wrap: wrap; gap: 14px;
}
.tk-footer-bottom p { font-size: .78rem; margin: 0; color: rgba(255,255,255,.25); }
.tk-footer-bottom-links { display: flex; gap: 18px; }
.tk-footer-bottom-links a {
    font-size: .78rem; color: rgba(255,255,255,.35);
    text-decoration: none; transition: all var(--tk-t);
    padding: 5px 14px;
    border-radius: var(--tk-r-full);
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.03);
}
.tk-footer-bottom-links a::after {
    content: none;
}
.tk-footer-bottom-links a:hover { color: #fff; background: rgba(193,127,89,.12); border-color: var(--tk-copper); }

/* ─── BACK TO TOP ─── */
.tk-back-to-top {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    background: var(--tk-ocean); color: #fff;
    border: 1px solid rgba(201,168,75,.2);
    border-radius: 50%; cursor: pointer;
    opacity: 0; transform: translateY(20px);
    transition: all .38s var(--tk-ease); box-shadow: var(--tk-shadow-lg);
}
.tk-back-to-top.visible { opacity: 1; transform: translateY(0); }
.tk-back-to-top:hover {
    background: var(--tk-gold-gradient);
    color: var(--tk-ocean-deep);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(201,168,75,.4);
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
.tk-animate { animation: fadeUp .65s var(--tk-ease) both; }

/* ─── Reveal on scroll ─── */
.tk-reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s var(--tk-ease-smooth), transform .75s var(--tk-ease-smooth); }
.tk-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .tk-yacht-grid { grid-template-columns: repeat(2, 1fr); }
    .tk-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .tk-categories { grid-template-columns: repeat(2, 1fr); }
    .tk-booking-layout { grid-template-columns: 1fr; }
    .tk-article-layout { grid-template-columns: 1fr; }
    .tk-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    /* navbar responsive handled above */
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .tk-body h1 { font-size: 1.8rem; }
    .tk-body h2 { font-size: 1.5rem; }
    /* mobile nav handled above */

/* hero responsive handled above */
    .tk-stat strong { font-size: 1.6rem; }
/* search responsive handled in hero */

    .tk-yacht-grid { grid-template-columns: 1fr; }
    .tk-blog-grid { grid-template-columns: 1fr; }
    .tk-categories { grid-template-columns: 1fr; }
    .tk-route-grid { grid-template-columns: 1fr; }
    .tk-steps { flex-direction: column; align-items: center; }
    .tk-step-arrow { transform: rotate(90deg); }
    .tk-section { padding: 44px 0; }
    .tk-page-header { padding: 100px 0 36px; }
    .tk-filter-bar { flex-direction: column; }
    .tk-filter-field { min-width: 100%; }

    .tk-form-grid { grid-template-columns: 1fr; }
    .tk-form-grid-3 { grid-template-columns: 1fr; }
    .tk-extras-grid { grid-template-columns: 1fr; }
    .tk-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .tk-footer-bottom { flex-direction: column; text-align: center; }
    .tk-topbar { display: none; }
    .tk-nav-phone span { display: none; }
    .tk-prefooter-inner { flex-direction: column; text-align: center; }
    .tk-prefooter-content p { max-width: 100%; }
    .tk-prefooter-actions { justify-content: center; flex-wrap: wrap; }
    .tk-blog-featured-img { height: 360px; }
    .tk-blog-featured-content { padding: 24px; }
    .tk-blog-featured-content h2 { font-size: 1.4rem; }
    .tk-article-hero { height: 45vh; }
    .tk-article-content { padding: 22px; }
    .tk-booking-header { flex-direction: column; align-items: flex-start; }
    .tk-container { padding: 0 18px; }
    .tk-section-header { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ═══════════════════════════════════════════════════════════
   AVAILABILITY BOARD (JS-generated)
   ═══════════════════════════════════════════════════════════ */
.tk-availability { overflow-x: auto; }
.availability-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px; padding: 4px 0;
}
.availability-month {
    background: var(--tk-sand); border-radius: var(--tk-r);
    padding: 18px; border: 1px solid var(--tk-border-light);
}
.availability-month h4 {
    text-align: center; font-family: var(--tk-font); font-weight: 700;
    font-size: .9rem; margin-bottom: 14px; color: var(--tk-ocean);
    text-transform: capitalize;
}
.availability-days {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.day-cell {
    display: flex; align-items: center; justify-content: center;
    width: 100%; aspect-ratio: 1; font-size: .82rem; font-weight: 500;
    border-radius: 8px; cursor: default; transition: all .2s var(--tk-ease);
}
.day-pad { visibility: hidden; }
.day-available { background: rgba(45,157,106,.12); color: var(--tk-success); }
.day-unavailable { background: rgba(212,64,64,.08); color: var(--tk-danger); opacity: .55; }
.day-selected { background: var(--tk-copper) !important; color: #fff !important; opacity: 1; }

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

/* ═══════════════════════════════════════════════════════════
   SCROLLBAR & SELECTIONS
   ═══════════════════════════════════════════════════════════ */
.tk-body ::-webkit-scrollbar { width: 8px; }
.tk-body ::-webkit-scrollbar-track { background: var(--tk-sand); }
.tk-body ::-webkit-scrollbar-thumb { background: var(--tk-border); border-radius: 4px; }
.tk-body ::-webkit-scrollbar-thumb:hover { background: var(--tk-text-muted); }
.tk-body ::selection { background: var(--tk-copper-glow); color: var(--tk-text); }

/* ═══════════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════════ */
@media print {
    .tk-navbar, .tk-footer, .tk-hero-bg, .tk-hamburger, .tk-drawer, .tk-drawer-backdrop { display: none !important; }
    .tk-body { background: #fff; color: #000; }
    .tk-card { box-shadow: none; border: 1px solid #ddd; }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM UX ENHANCEMENTS — 2026
   ═══════════════════════════════════════════════════════════ */

/* ─── INLINE SVG ICON UTILITY ─── */
.tk-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; flex-shrink: 0; vertical-align: middle;
}
.tk-icon svg { width: 100%; height: 100%; }
.tk-icon-sm { width: 16px; height: 16px; }
.tk-icon-lg { width: 24px; height: 24px; }
.tk-icon-xl { width: 32px; height: 32px; }
.tk-icon-copper { color: var(--tk-copper); }
.tk-icon-ocean { color: var(--tk-ocean); }
.tk-icon-muted { color: var(--tk-text-muted); }
.tk-icon-white { color: rgba(255,255,255,.65); }

/* ─── TRUST BAR PREMIUM ─── */
.tk-trust-bar {
    background: linear-gradient(180deg, var(--tk-ocean-deep), var(--tk-ocean-dark));
    border-bottom: 1px solid rgba(193,127,89,.15);
    padding: 28px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.tk-trust-item {
    display: flex; align-items: center; gap: 12px;
    font-size: .88rem; color: rgba(255,255,255,.8); font-weight: 600;
    padding: 10px 22px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--tk-r-full); transition: all var(--tk-t);
}
.tk-trust-item:hover {
    border-color: var(--tk-copper);
    background: rgba(193,127,89,.1);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(193,127,89,.15);
}
.tk-trust-icon {
    display: flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 50%;
    background: linear-gradient(135deg, var(--tk-copper), var(--tk-copper-dark));
    color: #fff;
    box-shadow: 0 3px 10px rgba(193,127,89,.3);
}
.tk-trust-icon svg { width: 14px; height: 14px; }

/* ─── CATEGORY CARDS PREMIUM ─── */
.tk-category-icon {
    display: flex; align-items: center; justify-content: center;
    width: 72px; height: 72px; margin: 0 auto 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--tk-copper-glow), rgba(193,127,89,.08));
    border: 2px solid rgba(193,127,89,.15);
    color: var(--tk-copper); transition: all var(--tk-t);
    box-shadow: 0 4px 16px rgba(193,127,89,.1);
}
.tk-category-icon svg { width: 30px; height: 30px; }
.tk-category-card:hover .tk-category-icon {
    background: linear-gradient(135deg, var(--tk-copper), var(--tk-copper-dark));
    color: #fff; border-color: var(--tk-copper);
    box-shadow: 0 8px 28px rgba(193,127,89,.35);
    transform: scale(1.1) rotate(-3deg);
}

/* ─── YACHT CARD PREMIUM ENHANCEMENTS ─── */
.tk-yacht-card {
    position: relative;
}

.tk-yacht-specs span {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 10px; background: var(--tk-sand);
    border-radius: var(--tk-r-full); font-size: .78rem;
    border: 1px solid var(--tk-border-light);
    white-space: nowrap;
}
.tk-yacht-specs .tk-icon { width: 14px; height: 14px; color: var(--tk-copper); }

.tk-yacht-location {
    display: flex; align-items: center; gap: 6px;
}
.tk-yacht-location .tk-icon { width: 14px; height: 14px; color: var(--tk-text-muted); }

/* ─── YACHT PRICE TAG PREMIUM ─── */
.tk-yacht-price-tag {
    background: linear-gradient(135deg, var(--tk-copper), var(--tk-copper-dark));
    border: none;
    padding: 10px 20px;
    box-shadow: 0 6px 20px rgba(193,127,89,.4);
}

/* ─── FILTER BAR PREMIUM ─── */
.tk-filter-bar {
    box-shadow: var(--tk-shadow-lg);
    background: var(--tk-white);
    border: 1px solid var(--tk-border-light);
}
.tk-filter-field label {
    display: flex; align-items: center; gap: 6px;
    font-size: .78rem; font-weight: 600;
    color: var(--tk-text-muted);
}
.tk-filter-field label .tk-icon { width: 14px; height: 14px; color: var(--tk-copper); }

/* ─── PAGE STATS PREMIUM ─── */
.tk-page-stats .tk-stat-chip {
    display: inline-flex; align-items: center; gap: 7px;
}
.tk-stat-chip .tk-icon { width: 15px; height: 15px; }

/* ─── DETAIL PAGE PREMIUM ─── */
.tk-specs-chips span {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; background: var(--tk-sand);
    border: 1px solid var(--tk-border-light); border-radius: var(--tk-r-full);
    font-weight: 500;
}
.tk-specs-chips .tk-icon { width: 15px; height: 15px; color: var(--tk-copper); }

.tk-card h2, .tk-card h3 {
    display: flex; align-items: center; gap: 10px;
}
.tk-card h2 .tk-icon, .tk-card h3 .tk-icon {
    color: var(--tk-copper);
}

/* ─── CHECKLIST PREMIUM ─── */
.tk-checklist li {
    display: flex; align-items: center; gap: 10px;
}
.tk-checklist li .tk-icon { width: 16px; height: 16px; color: var(--tk-success); flex-shrink: 0; }
.tk-checklist-warn li .tk-icon { color: #b8860b; }

/* ─── BOOKING FORM PREMIUM ─── */
.tk-form-group label {
    display: flex; align-items: center; gap: 6px;
}
.tk-form-group label .tk-icon { width: 15px; height: 15px; color: var(--tk-copper); }

.tk-booking-form .tk-card {
    position: relative;
    overflow: hidden;
}
.tk-booking-form .tk-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--tk-copper), var(--tk-copper-light), var(--tk-ocean-light));
}

/* ─── BOOKING STEP INDICATOR ─── */
.tk-booking-steps {
    display: flex; align-items: center; justify-content: center; gap: 0;
    margin-bottom: 32px; padding: 0 28px;
}
.tk-booking-step {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 20px;
    font-size: .84rem; font-weight: 600;
    color: var(--tk-text-muted); white-space: nowrap;
}
.tk-booking-step.is-active { color: var(--tk-copper); }
.tk-booking-step.is-done { color: var(--tk-success); }
.tk-booking-step-num {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--tk-sand); border: 2px solid var(--tk-border);
    font-weight: 700; font-size: .82rem;
    transition: all var(--tk-t);
}
.tk-booking-step.is-active .tk-booking-step-num {
    background: var(--tk-copper); color: #fff; border-color: var(--tk-copper);
    box-shadow: 0 3px 12px rgba(193,127,89,.25);
}
.tk-booking-step.is-done .tk-booking-step-num {
    background: var(--tk-success); color: #fff; border-color: var(--tk-success);
}
.tk-booking-step-line {
    width: 40px; height: 2px; background: var(--tk-border); flex-shrink: 0;
}
.tk-booking-step.is-done + .tk-booking-step-line { background: var(--tk-success); }

/* ─── SUMMARY CARD PREMIUM ─── */
.tk-summary-row span {
    display: flex; align-items: center; gap: 6px;
}
.tk-summary-row .tk-icon { width: 15px; height: 15px; color: var(--tk-copper); }

/* ─── FADE-IN ANIMATION ─── */
.fade-in {
    opacity: 0; transform: translateY(20px);
    animation: tkFadeIn .6s ease-out forwards;
}
@keyframes tkFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ─── GALLERY LIGHTBOX ─── */
.tk-lightbox-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,.88);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity .3s, visibility .3s;
}
.tk-lightbox-overlay.is-open {
    opacity: 1; visibility: visible;
}
.tk-lightbox-inner {
    position: relative;
    max-width: 90vw; max-height: 90vh;
    display: flex; align-items: center; justify-content: center;
}
.tk-lightbox-img-wrap {
    position: relative; display: inline-block;
    max-width: 90vw; max-height: 85vh;
}
.tk-lightbox-img {
    max-width: 90vw; max-height: 85vh;
    object-fit: contain; border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.tk-lightbox-close {
    position: absolute; top: -40px; right: 0;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.15); color: #fff;
    border: none; font-size: 24px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.tk-lightbox-close:hover { background: rgba(255,255,255,.3); }
.tk-lightbox-counter {
    position: absolute; bottom: -36px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.7); font-size: 14px; font-weight: 500;
    letter-spacing: .5px; white-space: nowrap;
}
.tk-lightbox-prev,
.tk-lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.1); color: #fff;
    border: 1px solid rgba(255,255,255,.2);
    font-size: 24px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
}
.tk-lightbox-prev { left: -60px; }
.tk-lightbox-next { right: -60px; }
.tk-lightbox-prev:hover,
.tk-lightbox-next:hover {
    background: rgba(255,255,255,.25);
    border-color: rgba(255,255,255,.4);
}
@media (max-width: 768px) {
    .tk-lightbox-prev { left: 10px; }
    .tk-lightbox-next { right: 10px; }
    .tk-lightbox-close { top: 10px; right: 10px; }
}

/* ─── GALLERY GRID CURSOR ─── */
.yacht-gallery-grid img {
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
.yacht-gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

/* ─── ESTIMATOR PREMIUM ─── */
.tk-estimator {
    background: linear-gradient(180deg, rgba(193,127,89,.06), var(--tk-white));
    border: 2px solid var(--tk-copper-light);
    position: relative; overflow: hidden;
}
.tk-estimator::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--tk-copper), var(--tk-copper-light));
}

/* ─── SCROLL REVEAL ANIMATION ─── */
.tk-reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity .7s var(--tk-ease), transform .7s var(--tk-ease);
}
.tk-reveal.is-visible { opacity: 1; transform: translateY(0); }
.tk-reveal-delay-1 { transition-delay: .1s; }
.tk-reveal-delay-2 { transition-delay: .2s; }
.tk-reveal-delay-3 { transition-delay: .3s; }

/* ─── LOADING SKELETON ─── */
.tk-skeleton {
    background: linear-gradient(90deg, var(--tk-sand) 25%, var(--tk-border-light) 50%, var(--tk-sand) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--tk-r);
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* ─── FLOATING WHATSAPP BUTTON ─── */
.tk-float-whatsapp {
    position: fixed; bottom: 28px; left: 28px; z-index: 998;
    display: flex; align-items: center; gap: 10px;
    padding: 14px 24px; background: #25d366; color: #fff;
    font-weight: 600; font-size: .88rem;
    border-radius: var(--tk-r-full); text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,.35);
    transition: all var(--tk-t);
}
.tk-float-whatsapp:hover {
    background: #22bc5b; transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(37,211,102,.45);
    color: #fff;
}
.tk-float-whatsapp svg { flex-shrink: 0; }

/* ─── BLOG PAGINATION ─── */
.tk-pagination {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; margin-top: 48px; padding: 0;
}
.tk-pagination-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 12px;
    border-radius: var(--tk-r); border: 1px solid var(--tk-border);
    background: var(--tk-white); color: var(--tk-text);
    font-size: .88rem; font-weight: 500; text-decoration: none;
    transition: all var(--tk-t); cursor: pointer;
}
.tk-pagination-btn:hover {
    border-color: var(--tk-copper); color: var(--tk-copper);
    background: rgba(193,127,89,.06);
}
.tk-pagination-btn.is-active {
    background: var(--tk-copper); color: var(--tk-white);
    border-color: var(--tk-copper); pointer-events: none;
}
.tk-pagination-dots {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 40px; color: var(--tk-text-light);
    font-size: .9rem; letter-spacing: 2px;
}
@media (max-width: 768px) {
    .tk-pagination { gap: 4px; margin-top: 32px; }
    .tk-pagination-btn { min-width: 36px; height: 36px; font-size: .8rem; }
}

/* ─── RESPONSIVE PREMIUM (Mobile) ─── */
@media (max-width: 768px) {
    .tk-trust-items { gap: 10px; justify-content: center; }
    .tk-trust-item { padding: 6px 14px; font-size: .8rem; }
    .tk-trust-icon { width: 24px; height: 24px; }
    .tk-trust-icon svg { width: 12px; height: 12px; }
    .tk-booking-steps { overflow-x: auto; justify-content: flex-start; gap: 0; padding: 0 12px; }
    .tk-booking-step { padding: 10px 12px; font-size: .78rem; }
    .tk-booking-step-num { width: 28px; height: 28px; font-size: .75rem; }
    .tk-booking-step-line { width: 20px; }
    .tk-float-whatsapp span { display: none; }
    .tk-float-whatsapp { padding: 14px; border-radius: 50%; }
    .tk-specs-chips { gap: 8px; }
    .tk-specs-chips span { padding: 5px 10px; font-size: .78rem; }
}

/* ═══════════════════════════════════════════
   NEW FEATURES CSS — v2
   ═══════════════════════════════════════════ */

/* ─── PROMO BANNER ─── */
.tk-promo-banner {
    padding: 10px 0;
    font-size: .85rem;
    font-weight: 500;
    position: relative;
    z-index: 1001;
}
.tk-promo-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.tk-promo-banner-text { text-align: center; }
.tk-promo-banner-btn {
    background: rgba(255,255,255,.2);
    color: inherit;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
}
.tk-promo-banner-btn:hover { background: rgba(255,255,255,.35); }
.tk-promo-banner-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: .7;
    transition: opacity .2s;
    padding: 0 4px;
    line-height: 1;
}
.tk-promo-banner-close:hover { opacity: 1; }

/* ─── AUTH PAGES ─── */
.tk-auth-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}
.tk-auth-container {
    display: flex;
    justify-content: center;
}
.tk-auth-card {
    background: var(--tk-white);
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 8px 40px rgba(12,54,80,.08);
    border: 1px solid rgba(193,127,89,.1);
}
.tk-auth-header {
    text-align: center;
    margin-bottom: 32px;
}
.tk-auth-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.tk-auth-header h1 {
    font-family: var(--tk-ff-display);
    font-size: 1.6rem;
    color: var(--tk-ocean);
    margin: 0 0 8px;
}
.tk-auth-header p {
    color: var(--tk-muted);
    font-size: .9rem;
    margin: 0;
}
.tk-auth-form { display: flex; flex-direction: column; gap: 18px; }
.tk-form-group { display: flex; flex-direction: column; gap: 6px; }
.tk-form-label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--tk-text);
}
.tk-form-group label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--tk-text);
}
.tk-form-input,
.tk-form-group input,
.tk-form-group textarea,
.tk-form-group select {
    padding: 12px 14px;
    border: 1px solid var(--tk-border);
    border-radius: 10px;
    font-size: .9rem;
    font-family: var(--tk-ff-body);
    transition: border-color .2s, box-shadow .2s;
    background: var(--tk-white);
    color: var(--tk-text);
    width: 100%;
    box-sizing: border-box;
}
.tk-form-input:focus,
.tk-form-group input:focus,
.tk-form-group textarea:focus,
.tk-form-group select:focus {
    border-color: var(--tk-copper);
    box-shadow: 0 0 0 3px rgba(193,127,89,.1);
    outline: none;
}
.tk-input-wrap {
    position: relative;
}
.tk-input-wrap svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tk-muted);
    pointer-events: none;
}
.tk-input-wrap input,
.tk-input-wrap .tk-form-input {
    padding-left: 40px;
}
.tk-input-icon {
    position: relative;
}
.tk-input-icon svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tk-muted);
    pointer-events: none;
}
.tk-input-icon input {
    padding-left: 40px;
    width: 100%;
    box-sizing: border-box;
}
.tk-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.tk-form-hint {
    font-size: .78rem;
    color: var(--tk-muted);
    margin-top: 2px;
}
.tk-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: .88rem;
    font-weight: 600;
    font-family: var(--tk-ff-body);
    cursor: pointer;
    border: none;
    transition: all .25s;
    text-decoration: none;
    line-height: 1.4;
}
.tk-btn-primary {
    background: linear-gradient(135deg, var(--tk-copper), #a36842);
    color: #fff;
}
.tk-btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.tk-btn-outline {
    background: transparent;
    color: var(--tk-copper);
    border: 1px solid var(--tk-copper);
}
.tk-btn-outline:hover { background: rgba(193,127,89,.08); }
.tk-btn-sm { padding: 8px 14px; font-size: .82rem; }
.tk-btn-full {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: .95rem;
}
.tk-auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: .85rem;
    color: var(--tk-muted);
}
.tk-auth-footer a {
    color: var(--tk-copper);
    font-weight: 600;
    text-decoration: none;
}
.tk-auth-footer a:hover { text-decoration: underline; }
.tk-auth-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(201,168,75,.06);
    border: 1px solid rgba(201,168,75,.15);
    color: var(--tk-gold);
    font-size: .82rem;
    font-weight: 500;
}

/* Alert */
.tk-alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: .85rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tk-alert--success { background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.2); color: #166534; }
.tk-alert--error { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.2); color: #991b1b; }
.tk-alert--info { background: rgba(59,130,246,.08); border: 1px solid rgba(59,130,246,.2); color: #1e40af; }
.tk-alert-success { background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.2); color: #166534; }
.tk-alert-error { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.2); color: #991b1b; }
.tk-alert-info { background: rgba(59,130,246,.08); border: 1px solid rgba(59,130,246,.2); color: #1e40af; }

/* ─── PROFILE PAGE ─── */
.tk-profile-section { padding-top: 40px; padding-bottom: 60px; }

.tk-profile-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding: 32px;
    background: var(--tk-white);
    border-radius: 20px;
    border: 1px solid var(--tk-border);
    box-shadow: 0 4px 24px rgba(12,54,80,.04);
    flex-wrap: wrap;
}
.tk-profile-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}
.tk-profile-avatar-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--tk-copper);
}
.tk-profile-avatar-initial {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tk-copper), #a36842);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--tk-ff-display);
}
.tk-profile-tier-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    font-size: .65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: .03em;
    white-space: nowrap;
}
.tk-profile-info { flex: 1; min-width: 200px; }
.tk-profile-name {
    font-family: var(--tk-ff-display);
    font-size: 1.5rem;
    color: var(--tk-ocean);
    margin: 0 0 4px;
    font-weight: 700;
}
.tk-profile-meta {
    color: var(--tk-muted);
    font-size: .85rem;
    margin: 2px 0;
}
.tk-profile-stats {
    display: flex;
    gap: 24px;
    margin-left: auto;
}
.tk-profile-stat {
    text-align: center;
    min-width: 64px;
}
.tk-profile-stat-num {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--tk-copper);
    font-family: var(--tk-ff-display);
    line-height: 1.2;
}
.tk-profile-stat-label {
    font-size: .72rem;
    color: var(--tk-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 500;
}

/* Tabs */
.tk-profile-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 28px;
    border-bottom: 2px solid var(--tk-border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.tk-profile-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--tk-muted);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all .2s;
    white-space: nowrap;
}
.tk-profile-tab:hover {
    color: var(--tk-copper);
}
.tk-profile-tab.active {
    color: var(--tk-copper);
    border-bottom-color: var(--tk-copper);
}
.tk-tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    background: var(--tk-copper);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
}

/* Profile Content */
.tk-profile-content { animation: tkFadeIn .3s ease; }
@keyframes tkFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.tk-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.tk-profile-card {
    background: var(--tk-white);
    border: 1px solid var(--tk-border);
    border-radius: 16px;
    padding: 28px;
}
.tk-profile-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--tk-ocean);
    margin: 0 0 20px;
    font-family: var(--tk-ff-display);
}

/* Avatar Upload */
.tk-avatar-upload-area {
    border: 2px dashed var(--tk-border);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tk-avatar-upload-area:hover,
.tk-avatar-upload-area.dragover {
    border-color: var(--tk-copper);
    background: rgba(193,127,89,.03);
}
.tk-avatar-preview {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}
.tk-avatar-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--tk-muted);
}
.tk-avatar-placeholder p { margin: 0; font-size: .88rem; }
.tk-avatar-placeholder small { font-size: .75rem; opacity: .7; }
.tk-avatar-file-input {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* Empty State */
.tk-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--tk-white);
    border-radius: 16px;
    border: 1px solid var(--tk-border);
}
.tk-empty-state h3 {
    font-family: var(--tk-ff-display);
    font-size: 1.2rem;
    color: var(--tk-ocean);
    margin: 16px 0 8px;
}
.tk-empty-state p {
    color: var(--tk-muted);
    font-size: .88rem;
    margin: 0 0 20px;
}

/* Booking Cards */
.tk-booking-list { display: flex; flex-direction: column; gap: 16px; }
.tk-booking-card {
    display: flex;
    background: var(--tk-white);
    border: 1px solid var(--tk-border);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow .25s;
}
.tk-booking-card:hover {
    box-shadow: 0 8px 32px rgba(12,54,80,.08);
}
.tk-booking-card-img {
    position: relative;
    width: 200px;
    min-height: 160px;
    flex-shrink: 0;
}
.tk-booking-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tk-booking-status {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: .72rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.tk-booking-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.tk-booking-yacht-name {
    font-family: var(--tk-ff-display);
    font-size: 1.1rem;
    color: var(--tk-ocean);
    margin: 0;
}
.tk-booking-location {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--tk-muted);
    font-size: .82rem;
    margin: 0;
}
.tk-booking-details {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.tk-booking-detail {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .82rem;
    color: var(--tk-text);
}
.tk-booking-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: auto;
}
.tk-booking-total {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--tk-copper);
    font-family: var(--tk-ff-display);
}
.tk-booking-deposit {
    font-size: .78rem;
    color: var(--tk-muted);
}

/* Favorite Cards */
.tk-favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.tk-fav-card {
    background: var(--tk-white);
    border: 1px solid var(--tk-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s;
}
.tk-fav-card:hover { box-shadow: 0 8px 32px rgba(12,54,80,.08); transform: translateY(-2px); }
.tk-fav-card-img {
    position: relative;
    height: 180px;
}
.tk-fav-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tk-fav-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(4px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tk-muted);
    transition: all .2s;
}
.tk-fav-remove:hover { background: #ef4444; color: #fff; }
.tk-fav-card-body {
    padding: 16px;
}
.tk-fav-card-body h4 {
    font-family: var(--tk-ff-display);
    font-size: 1rem;
    color: var(--tk-ocean);
    margin: 0 0 4px;
}
.tk-fav-location {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--tk-muted);
    font-size: .8rem;
    margin: 0 0 12px;
}
.tk-fav-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tk-fav-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--tk-copper);
    font-family: var(--tk-ff-display);
}
.tk-fav-price small { font-size: .72rem; font-weight: 400; color: var(--tk-muted); }

/* Loyalty */
.tk-loyalty-overview {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.tk-loyalty-tier-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: var(--tk-white);
    border: 1px solid var(--tk-border);
    border-radius: 16px;
}
.tk-loyalty-tier-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tk-loyalty-tier-name {
    font-family: var(--tk-ff-display);
    font-size: 1.2rem;
    color: var(--tk-ocean);
    margin: 0 0 4px;
}
.tk-loyalty-points {
    font-size: .9rem;
    color: var(--tk-text);
    margin: 0;
}
.tk-loyalty-discount {
    font-size: .82rem;
    color: #16a34a;
    font-weight: 600;
    margin: 2px 0 0;
}
.tk-loyalty-progress-card {
    padding: 24px;
    background: var(--tk-white);
    border: 1px solid var(--tk-border);
    border-radius: 16px;
}
.tk-loyalty-progress-label {
    font-size: .88rem;
    color: var(--tk-text);
    margin: 0 0 12px;
}
.tk-progress-bar {
    width: 100%;
    height: 10px;
    background: var(--tk-border);
    border-radius: 5px;
    overflow: hidden;
}
.tk-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--tk-copper), var(--tk-gold));
    border-radius: 5px;
    transition: width .6s ease;
}
.tk-progress-markers {
    display: flex;
    justify-content: space-between;
    font-size: .75rem;
    color: var(--tk-muted);
    margin-top: 6px;
}
.tk-tier-roadmap {
    display: flex;
    justify-content: space-between;
    padding: 24px;
    background: var(--tk-white);
    border: 1px solid var(--tk-border);
    border-radius: 16px;
}
.tk-tier-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: .4;
    transition: opacity .3s;
}
.tk-tier-step.active { opacity: .7; }
.tk-tier-step.current { opacity: 1; }
.tk-tier-step-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid var(--tk-white);
    box-shadow: 0 0 0 2px rgba(0,0,0,.1);
}
.tk-tier-step.current .tk-tier-step-dot {
    box-shadow: 0 0 0 3px var(--tk-copper);
    transform: scale(1.2);
}
.tk-tier-step-name {
    font-size: .78rem;
    font-weight: 600;
    color: var(--tk-text);
}
.tk-tier-step-pts {
    font-size: .7rem;
    color: var(--tk-muted);
}

/* Badge */
.tk-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 8px;
    font-size: .75rem;
    font-weight: 600;
    background: rgba(193,127,89,.08);
    color: var(--tk-copper);
    text-transform: capitalize;
}

/* ─── ACCOUNT PAGE LEGACY ─── */
.tk-account-section { padding-top: 40px; }
.tk-account-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.tk-account-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--tk-copper);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}
.tk-account-info { flex: 1; }
.tk-account-info h1 {
    font-family: var(--tk-ff-display);
    font-size: 1.4rem;
    color: var(--tk-ocean);
    margin: 0 0 6px;
}
.tk-account-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.tk-account-tier {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .82rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(193,127,89,.08);
    color: var(--tk-copper);
}
.tk-account-discount {
    font-size: .8rem;
    font-weight: 600;
    color: #16a34a;
    background: rgba(34,197,94,.08);
    padding: 4px 10px;
    border-radius: 16px;
}
.tk-account-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.tk-account-card {
    background: var(--tk-white);
    border: 1px solid var(--tk-border);
    border-radius: 16px;
    padding: 28px;
}
.tk-account-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--tk-ocean);
    margin: 0 0 20px;
}
.tk-account-card-full { grid-column: 1 / -1; }
.tk-account-fav-list { display: flex; flex-direction: column; gap: 8px; }
.tk-account-fav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--tk-sand);
    text-decoration: none;
    color: var(--tk-text);
    transition: background .2s;
}
.tk-account-fav-item:hover { background: rgba(193,127,89,.1); }
.tk-account-fav-item span { font-size: .82rem; color: var(--tk-muted); }
.tk-muted { color: var(--tk-muted); font-size: .85rem; }
.tk-text-success { color: #16a34a; }
.tk-text-error { color: #dc2626; }

/* Table */
.tk-table-wrap { overflow-x: auto; }
.tk-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem;
}
.tk-table th, .tk-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--tk-border);
}
.tk-table th {
    font-weight: 600;
    color: var(--tk-muted);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ─── PROFILE RESPONSIVE ─── */
@media(max-width:768px) {
    .tk-profile-header { flex-direction: column; text-align: center; padding: 24px 16px; }
    .tk-profile-stats { margin-left: 0; justify-content: center; }
    .tk-profile-info { min-width: auto; }
    .tk-profile-grid { grid-template-columns: 1fr; }
    .tk-form-row { grid-template-columns: 1fr; }
    .tk-booking-card { flex-direction: column; }
    .tk-booking-card-img { width: 100%; height: 180px; }
    .tk-favorites-grid { grid-template-columns: 1fr; }
    .tk-tier-roadmap { flex-wrap: wrap; gap: 16px; justify-content: center; }
    .tk-account-grid { grid-template-columns: 1fr; }
    .tk-auth-card { padding: 32px 20px; }
    .tk-loyalty-tier-card { flex-direction: column; text-align: center; }
}

/* ─── FAVORITE HEART ─── */
.tk-fav-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(4px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    color: var(--tk-muted);
}
.tk-fav-btn:hover { background: #fff; transform: scale(1.1); }
.tk-fav-btn.is-liked {
    color: #ef4444;
    background: rgba(255,255,255,.95);
}
.tk-fav-btn.is-liked svg { fill: #ef4444; }

/* ─── REVIEWS ─── */
.tk-d-reviews { margin-top: 48px; }
.tk-d-review-avg {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    font-size: .9rem;
}
.tk-d-review-avg strong { margin-left: 6px; color: var(--tk-copper); font-size: 1.1rem; }
.tk-d-review-avg small { color: var(--tk-muted); }
.tk-d-review-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}
.tk-d-review-item {
    background: var(--tk-white);
    border: 1px solid var(--tk-border);
    border-radius: 14px;
    padding: 24px;
}
.tk-d-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.tk-d-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--tk-copper);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
}
.tk-d-review-header strong { font-size: .9rem; }
.tk-d-review-header small { display: block; color: var(--tk-muted); font-size: .78rem; }
.tk-d-review-stars { margin-left: auto; display: flex; gap: 2px; }
.tk-d-review-item h4 { margin: 0 0 8px; font-size: .95rem; color: var(--tk-ocean); }
.tk-d-review-item p { margin: 0; font-size: .88rem; color: var(--tk-text); line-height: 1.6; }
.tk-d-review-reply {
    margin-top: 14px;
    padding: 14px 16px;
    background: var(--tk-sand);
    border-radius: 10px;
    font-size: .85rem;
}
.tk-d-review-reply strong { color: var(--tk-copper); font-size: .82rem; }
.tk-d-review-reply p { margin: 6px 0 0; }

/* Review Form */
.tk-d-review-form-wrap {
    background: var(--tk-white);
    border: 1px solid var(--tk-border);
    border-radius: 16px;
    padding: 32px;
}
.tk-d-review-form-wrap h3 {
    font-size: 1.1rem;
    color: var(--tk-ocean);
    margin: 0 0 20px;
}
.tk-d-review-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Star Rating Input */
.tk-star-rating {
    display: flex;
    gap: 4px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.tk-star-rating input { display: none; }
.tk-star-rating label { cursor: pointer; }
.tk-star-rating label svg { fill: none; transition: fill .15s; }
.tk-star-rating label:hover svg,
.tk-star-rating label:hover ~ label svg,
.tk-star-rating input:checked ~ label svg {
    fill: var(--tk-copper);
}

/* ─── NEWSLETTER ─── */
.tk-footer-newsletter {
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.tk-footer-newsletter-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.tk-footer-newsletter-text { flex: 1; min-width: 240px; }
.tk-footer-newsletter-text h4 {
    font-size: 1rem;
    margin: 0 0 4px;
    color: var(--tk-white, #fff);
}
.tk-footer-newsletter-text p {
    font-size: .82rem;
    margin: 0;
    color: rgba(255,255,255,.6);
}
.tk-newsletter-form {
    display: flex;
    gap: 8px;
    flex: 1;
    min-width: 280px;
}
.tk-newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: .88rem;
    font-family: var(--tk-ff-body);
}
.tk-newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.tk-newsletter-form input:focus {
    border-color: var(--tk-copper);
    outline: none;
    box-shadow: 0 0 0 3px rgba(193,127,89,.2);
}
.tk-newsletter-form .tk-btn-primary {
    white-space: nowrap;
    gap: 6px;
}
.tk-newsletter-msg {
    font-size: .82rem;
    margin-top: 8px;
    width: 100%;
}
.tk-newsletter-msg.tk-msg-ok { color: #4ade80; }
.tk-newsletter-msg.tk-msg-err { color: #f87171; }

/* ─── LIVE CHAT WIDGET ─── */
.tk-chat-widget {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 9999;
}
.tk-chat-trigger {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--tk-ocean);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(12,54,80,.3);
    transition: transform .2s, box-shadow .2s;
    position: relative;
}
.tk-chat-trigger:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(12,54,80,.4);
}
.tk-chat-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ef4444;
    border: 2px solid var(--tk-ocean);
}
.tk-chat-panel {
    position: absolute;
    bottom: 68px;
    right: 0;
    width: 360px;
    max-height: 480px;
    background: var(--tk-white);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(12,54,80,.15);
    border: 1px solid var(--tk-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.tk-chat-header {
    padding: 16px 20px;
    background: var(--tk-ocean);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tk-chat-header strong { font-size: .95rem; }
.tk-chat-header small { display: block; font-size: .78rem; opacity: .7; }
.tk-chat-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: .7;
    transition: opacity .2s;
}
.tk-chat-close:hover { opacity: 1; }
.tk-chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 320px;
    min-height: 200px;
}
.tk-chat-msg {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: .85rem;
    line-height: 1.5;
}
.tk-chat-msg p { margin: 0; }
.tk-chat-msg-user {
    align-self: flex-end;
    background: var(--tk-copper);
    color: #fff;
    border-bottom-right-radius: 4px;
}
.tk-chat-msg-admin {
    align-self: flex-start;
    background: var(--tk-sand);
    color: var(--tk-text);
    border-bottom-left-radius: 4px;
}
.tk-chat-form {
    display: flex;
    padding: 12px;
    border-top: 1px solid var(--tk-border);
    gap: 8px;
}
.tk-chat-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--tk-border);
    border-radius: 10px;
    font-size: .88rem;
    font-family: var(--tk-ff-body);
}
.tk-chat-form input:focus { border-color: var(--tk-copper); outline: none; }
.tk-chat-form button {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--tk-copper);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.tk-chat-form button:hover { background: var(--tk-copper-dark, #a36842); }

/* ─── LOCATIONS / EXPERIENCES PAGES ─── */
.tk-location-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    padding: 60px 0 40px;
}
.tk-location-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,54,80,.8) 0%, rgba(12,54,80,.2) 100%);
}
.tk-location-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
}
.tk-location-hero-content h1 {
    font-family: var(--tk-ff-display);
    font-size: 2.4rem;
    margin: 12px 0 8px;
}
.tk-location-hero-content p {
    font-size: .95rem;
    opacity: .85;
    margin: 0 0 16px;
}
.tk-location-stats {
    display: flex;
    gap: 20px;
    font-size: .88rem;
    opacity: .8;
}
.tk-location-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.tk-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    opacity: .7;
}
.tk-breadcrumb a { color: inherit; text-decoration: none; }
.tk-breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.tk-location-desc {
    max-width: 800px;
    font-size: .95rem;
    line-height: 1.8;
    color: var(--tk-text);
}
.tk-location-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 32px;
}
.tk-location-gallery-item { border-radius: 12px; overflow: hidden; }
.tk-location-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .3s;
}
.tk-location-gallery-item:hover img { transform: scale(1.05); }

/* Location & Experience Cards (Grid) */
.tk-locations-grid,
.tk-experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.tk-location-card,
.tk-experience-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--tk-white);
    border: 1px solid var(--tk-border);
    text-decoration: none;
    color: var(--tk-text);
    transition: transform .2s, box-shadow .2s;
}
.tk-location-card:hover,
.tk-experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(12,54,80,.1);
}
.tk-location-card-img,
.tk-experience-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.tk-location-card-img img,
.tk-experience-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.tk-location-card:hover img,
.tk-experience-card:hover img { transform: scale(1.06); }
.tk-location-card-overlay,
.tk-experience-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,54,80,.4), transparent);
}
.tk-experience-card-icon {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 1.6rem;
    z-index: 1;
}
.tk-location-card-body,
.tk-experience-card-body { padding: 20px; }
.tk-location-card-body h3,
.tk-experience-card-body h3 {
    font-size: 1.1rem;
    color: var(--tk-ocean);
    margin: 0 0 8px;
}
.tk-location-card-body p,
.tk-experience-card-body p {
    font-size: .85rem;
    color: var(--tk-muted);
    margin: 0;
    line-height: 1.5;
}
.tk-experience-card-meta {
    display: flex;
    gap: 14px;
    margin-top: 12px;
    font-size: .82rem;
    color: var(--tk-copper);
    font-weight: 600;
}

/* ─── TRUST BAR HIGHLIGHT ─── */
.tk-trust-highlight {
    background: rgba(193,127,89,.12);
    border-radius: 20px;
    padding: 6px 14px !important;
    font-weight: 600;
    color: var(--tk-copper);
}

/* ─── OWNER DASHBOARD ─── */
.tk-owner-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}
.tk-stat-card {
    background: var(--tk-white);
    border: 1px solid var(--tk-border);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
}
.tk-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--tk-ocean);
    font-family: var(--tk-ff-display);
}
.tk-stat-label {
    display: block;
    font-size: .82rem;
    color: var(--tk-muted);
    margin-top: 4px;
}

/* ─── WHATSAPP PULSE ANIMATION ─── */
.tk-float-whatsapp {
    animation: tk-wp-pulse 2s infinite;
}
@keyframes tk-wp-pulse {
    0% { box-shadow: 0 4px 16px rgba(37,211,102,.3); }
    50% { box-shadow: 0 4px 24px rgba(37,211,102,.5), 0 0 0 12px rgba(37,211,102,.1); }
    100% { box-shadow: 0 4px 16px rgba(37,211,102,.3); }
}

/* ─── RESPONSIVE ADDITIONS ─── */
@media (max-width: 768px) {
    .tk-auth-card { padding: 32px 24px; }
    .tk-form-row { grid-template-columns: 1fr; }
    .tk-account-grid { grid-template-columns: 1fr; }
    .tk-owner-stats { grid-template-columns: 1fr; }
    .tk-chat-panel { width: calc(100vw - 32px); right: -8px; }
    .tk-location-hero { min-height: 300px; }
    .tk-location-hero-content h1 { font-size: 1.6rem; }
    .tk-location-gallery { grid-template-columns: 1fr 1fr; }
    .tk-footer-newsletter-inner { flex-direction: column; text-align: center; }
    .tk-newsletter-form { width: 100%; }
    .tk-d-review-form-wrap { padding: 20px; }
    .tk-promo-banner-inner { font-size: .8rem; }
    .tk-nav-login span,
    .tk-nav-user-name { display: none; }
}

/* ═══════════════════════════════════════════
   404 ERROR PAGE
   ═══════════════════════════════════════════ */
.tk-error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
    background: var(--tk-bg);
}
.tk-error-inner {
    max-width: 560px;
}
.tk-error-code {
    font-family: var(--tk-display);
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--tk-copper), var(--tk-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}
.tk-error-title {
    font-family: var(--tk-display);
    font-size: 1.8rem;
    color: var(--tk-text);
    margin-bottom: 12px;
}
.tk-error-desc {
    color: var(--tk-muted);
    font-size: .95rem;
    margin-bottom: 32px;
    line-height: 1.6;
}
.tk-error-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.tk-error-actions .tk-btn-primary,
.tk-error-actions .tk-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 500;
    transition: all .3s;
    text-decoration: none;
}
.tk-error-actions .tk-btn-primary {
    background: linear-gradient(135deg, var(--tk-copper), var(--tk-copper-dark, #a36842));
    color: #fff;
    border: none;
}
.tk-error-actions .tk-btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.tk-error-actions .tk-btn-outline {
    background: transparent;
    color: var(--tk-text);
    border: 1px solid var(--tk-border);
}
.tk-error-actions .tk-btn-outline:hover {
    border-color: var(--tk-copper);
    color: var(--tk-copper);
}
@media (max-width: 480px) {
    .tk-error-code { font-size: 5rem; }
    .tk-error-title { font-size: 1.3rem; }
    .tk-error-actions { flex-direction: column; align-items: center; }
}

/* navbar responsive consolidated above */

