﻿* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
            --primary: #1a2a6c;
            --gradient: linear-gradient(135deg, #1a2a6c, #2980b9);
            --border-radius: 16px;
            --shadow: 0 20px 60px rgba(0,0,0,0.4);
            --transition: all 0.3s ease;
 }

#globe-container {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 1;
        }

.controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.control-btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.control-btn:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.15));
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.control-btn.active {
    background: linear-gradient(135deg, rgba(52,152,219,0.6), rgba(41,128,185,0.4));
    border-color: rgba(100,180,255,0.6);
    box-shadow: 0 0 30px rgba(52,152,219,0.5);
}

@media (max-width: 576px) {

    .controls {
        bottom: 15px;
        gap: 10px;
    }

    .control-btn {
        padding: 12px;
        border-radius: 50%;
        justify-content: center;
        min-width: 48px;
        height: 48px;
    }

    .control-btn .btn-text {
        display: none;
    }

    .control-btn i {
        font-size: 1.2rem;
        margin: 0;
    }
}

        .right-panel {
            position: absolute;
            top: 50%;
            right: 30px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 14px;
            z-index: 100;
            width: 300px;
            max-height: calc(100vh - 120px);
            overflow: visible;
        }

.search-box {
    width: 100%;
    padding: 10px;
    position: relative;
    z-index: 1000;
}

.search-input-wrapper {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 14px 22px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    background: rgba(255,255,255,0.95);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1001;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(100,150,255,0.5);
    background: white;
}

#search-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    overflow: hidden;
    display: none;
    z-index: 9999;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #333;
    transition: background 0.15s;
    background: white;
}

.search-result-item:hover {
    background: #f0f4ff;
}

.search-result-item .flag {
    font-size: 1.4rem;
}

.right-panel {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 100;
    width: 300px;
    max-height: calc(100vh - 120px);
    overflow: visible;}

@media (max-width: 768px) {
    .right-panel {
        position: fixed;
        top: auto;
        bottom: 110px;
        right: 0;
        left: 0;
        transform: none;
        width: 100%;
        padding: 0 16px;
        gap: 10px;
        overflow: visible;
    }
    
    #search-results {
        z-index: 9999;
        max-height: 250px;
    }
}
        .country-info {
            width: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.98));
            border-radius: var(--border-radius);
            padding: 26px 26px 22px;
            box-shadow: var(--shadow);
            text-align: center;
            display: none;
            border: 1px solid rgba(255,255,255,0.3);
            position: relative;
            animation: fadeSlideIn 0.35s ease;
        }

        .country-info.active { display: block; }

        @keyframes fadeSlideIn {
            from { opacity: 0; transform: translateY(-12px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .country-flag {
            font-size: 4rem;
            margin-bottom: 12px;
            filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
            line-height: 1;
        }

        .country-name {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .country-details {
            color: #555;
            margin-bottom: 18px;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        }

        .btn-close {
            position: absolute;
            top: 10px; right: 14px;
            background: none;
            border: none;
            color: #aaa;
            font-size: 1.2rem;
            cursor: pointer;
            line-height: 1;
        }

        .instructions {
            position: absolute;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: rgba(255,255,255,0.65);
            font-size: 0.9rem;
            z-index: 100;
            white-space: nowrap;
            pointer-events: none;
        }

        .loading {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(135deg, #0a1128 0%, #1a2a6c 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            transition: opacity 0.6s ease;
        }

        .loading.hidden {
            opacity: 0;
            pointer-events: none;
        }

.spinner {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 35%,
    rgba(64, 164, 255, 0.12),
    rgba(30, 100, 180, 0.08),
    rgba(20, 70, 140, 0.04)
  );
  border: 2px solid rgba(64, 164, 255, 0.3);
  box-shadow: 0 0 20px rgba(64, 164, 255, 0.2);
}

.spinner::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform-origin: 0 40px;
  animation: orbit 1.2s linear infinite;
  box-shadow: 0 0 6px rgba(64, 164, 255, 0.8);
}

.spinner::after {
  content: "🌍";
  position: absolute;
  font-size: 34px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(40px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(40px) rotate(-360deg);
  }
}

        .loading p {
            color: rgba(255,255,255,0.7);
            font-size: 1rem;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        @media (max-width: 768px) {
            .right-panel {
                position: fixed;
                top: auto;
                bottom: 110px;
                right: 0; left: 0;
                transform: none;
                width: 100%;
                padding: 0 16px;
                gap: 10px;
            }

            .country-info {
                border-radius: 16px;
            }

            .controls {
                bottom: 16px;
                flex-wrap: wrap;
                justify-content: center;
                gap: 8px;
            }

            .control-btn {
                padding: 10px 18px;
                font-size: 0.85rem;
            }

            .instructions { display: none; }
        }

              .map-container {
            position: relative;
            width: 100vw;
            height: 100vh;
            background: var(--gradient-sea);
            overflow: hidden;
        }

        #world-map {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }
.sf-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;  width: 100%;
  margin-bottom:5px;
}

.sf-toggle span {
  font-size: 12px;
  font-weight: 400;
  color: #777;
}

.btn-toggle-switch {
  position: relative;
  width: 34px;
  height: 20px;
  flex-shrink: 0;
}

.btn-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.btn-toggle-switch .slider {
  position: absolute;
  inset: 0;
  background-color: #e5e5ea;
  border-radius: 20px;
  cursor: pointer;
  transition: .25s;
}

.btn-toggle-switch .slider:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: .25s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.btn-toggle-switch input:checked + .slider {
  background-color: var(--primary);
}

.btn-toggle-switch input:checked + .slider:before {
  transform: translateX(14px);
}
    

    .header-container {
        display:flex; align-items:center; justify-content:space-between;
        padding:0; height:68px; transition:height .25s ease;
    }
    header.scrolled .header-container { height:58px; }
    header.scrolled { box-shadow:0 2px 24px rgba(0,0,0,.1); }

    .logo { display:flex; align-items:center; gap:8px; text-decoration:none; font-family:'Playfair Display',serif; font-size:1.5rem; font-weight:700; color:var(--primary); flex-shrink:0; }
    .logo i { color:var(--accent); font-size:1.3rem; }
    .logo span:last-child { color:var(--secondary); }

    .nav-main { display:flex; list-style:none; margin:0; padding:0; gap:0; align-items:center; }
    .nav-main > li { position:relative; }
    .nav-main > li > a {
        display:flex; align-items:center; gap:5px;
        padding:8px 12px; position:relative;
        color:#6b7280; font-weight:400; font-size:.86rem; letter-spacing:.01em;
        text-decoration:none; white-space:nowrap; transition:color .15s;
    }
    .nav-main > li > a:hover { color:#111; }
    .nav-main > li > a.nav-active { color:#111; font-weight:600; }
    .nav-main > li > a.nav-active::after {
        content:''; position:absolute; bottom:0; left:12px; right:12px;
        height:2px; border-radius:2px; background:var(--secondary);
    }

    .nav-akcija { color:#c0392b !important; font-weight:500 !important; }
    .nav-akcija::before { content:''; width:5px; height:5px; border-radius:50%; background:#e74c3c; display:inline-block; flex-shrink:0; animation:dot-blink 2s infinite; }
    .nav-akcija::after { display:none !important; }
    @keyframes dot-blink { 0%,100%{opacity:1} 50%{opacity:.3} }

    .nav-arrow { font-size:.5rem; transition:transform .22s; opacity:.35; margin-left:2px; }
    .has-mega.mm-open > a .nav-arrow { transform:rotate(180deg); opacity:.6; }

    .has-mega .megamenu {
        position:absolute; top:100%; left:50%;
        transform:translateX(-50%) translateY(-4px);
        background:#fff; border-radius:20px;
        box-shadow:0 24px 70px rgba(0,0,0,.13), 0 4px 16px rgba(0,0,0,.05);
        width:1060px; max-width:96vw;
        opacity:0; visibility:hidden; pointer-events:none;
        transition:opacity .2s ease, transform .2s ease, visibility .2s;
        z-index:900; overflow:hidden; border:1px solid #eee;
    }
    .has-mega.mm-open .megamenu {
        opacity:1; visibility:visible; pointer-events:all;
        transform:translateX(-50%) translateY(6px);
    }

    .mm-inner { display:flex; height:380px; }

    .mm-featured {
        width:240px; flex-shrink:0; position:relative; overflow:hidden; cursor:pointer;
    }
    .mm-featured-img {
        width:100%; height:100%; object-fit:cover; display:block;
        transition:transform .5s ease;
    }
    .mm-featured:hover .mm-featured-img { transform:scale(1.06); }
    .mm-featured-overlay {
        position:absolute; inset:0;
        background:linear-gradient(to top, rgba(15,23,42,.82) 0%, rgba(15,23,42,.08) 55%);
        display:flex; flex-direction:column; justify-content:flex-end; padding:18px 16px;
    }
    .mm-feat-tag {
        display:inline-flex; align-items:center; gap:4px;
        background:rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.28);
        backdrop-filter:blur(6px); border-radius:20px;
        padding:3px 10px; font-size:.65rem; font-weight:700; color:#fff;
        letter-spacing:.07em; text-transform:uppercase; margin-bottom:10px; width:fit-content;
    }
    .mm-feat-name {
        font-size:1.05rem; font-weight:700; color:#fff; line-height:1.25;
        font-family:'Playfair Display',serif; margin-bottom:3px;
    }
    .mm-feat-loc { font-size:.72rem; color:rgba(255,255,255,.65); margin-bottom:14px; display:flex; align-items:center; gap:4px; }
    .mm-feat-cta {
        display:inline-flex; align-items:center; gap:6px;
        background:#fff; color:#111; padding:7px 14px; border-radius:8px;
        font-size:.75rem; font-weight:700; text-decoration:none; width:fit-content;
        transition:background .15s;
    }
    .mm-feat-cta:hover { background:#f0f2f5; color:#111; }

    .mm-grid-side {
        flex:1; display:flex; flex-direction:column; min-width:0; min-height:0;
    }
    .mm-sidebar {
        width:175px; flex-shrink:0; overflow-y:auto; border-left:1px solid #f2f2f2; border-right:1px solid #f2f2f2;
        padding:8px 6px; display:flex; flex-direction:column; gap:1px;
        scrollbar-width:thin; scrollbar-color:#e0e0e0 transparent;
        background:#fafbfc;
    }
    .mm-sidebar::-webkit-scrollbar { width:3px; }
    .mm-sidebar::-webkit-scrollbar-thumb { background:#e0e0e0; border-radius:3px; }
    .mm-sb-item {
        display:flex; align-items:center; gap:7px; padding:7px 9px; border-radius:8px;
        cursor:pointer; transition:.13s; user-select:none; font-size:.77rem; color:#444; font-weight:500;
        flex-shrink:0;
    }
    .mm-sb-item:hover { background:#eef0f3; color:#222; }
    .mm-sb-item.active { background:var(--primary); color:#fff; }
    .mm-sb-item.active .mm-sb-count { background:rgba(255,255,255,.22); color:#fff; }
    .mm-sb-name { flex:1; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; font-size:.77rem; }
    .mm-sb-count { font-size:.65rem; background:#ebebeb; color:#999; border-radius:10px; padding:1px 6px; flex-shrink:0; font-weight:700; }
    .mm-sb-divider { height:1px; background:#eee; margin:4px 6px; }

    .mm-grid {
        flex:1; overflow-y:auto; padding:10px 14px;
        display:grid; grid-template-columns:repeat(3,1fr); gap:9px; align-content:start;
        scrollbar-width:thin; scrollbar-color:#e8e8e8 transparent;
    }
    .mm-grid-card {
        display:flex; flex-direction:column; border-radius:10px;
        text-decoration:none; color:#222; border:1px solid #ebebeb; background:#fff;
        transition:transform .18s, box-shadow .18s, border-color .18s;
    }
    .mm-grid-card:hover { transform:translateY(-3px); box-shadow:0 8px 24px rgba(0,0,0,.1); border-color:#d0d0d0; text-decoration:none; }
    .mm-grid-card.hidden { display:none; }
    .mm-grid-img-wrap { width:100%; height:90px; overflow:hidden; border-radius:10px 10px 0 0; flex-shrink:0; }
    .mm-grid-img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .3s ease; }
    .mm-grid-card:hover .mm-grid-img { transform:scale(1.05); }
    .mm-grid-ph { width:100%; height:90px; background:linear-gradient(135deg,#e2e8f0,#cbd5e1); display:flex; align-items:center; justify-content:center; color:#94a3b8; font-size:.9rem; border-radius:10px 10px 0 0; flex-shrink:0; }
    .mm-grid-body { padding:8px 10px 10px; }
    .mm-grid-name { font-size:.77rem; font-weight:700; color:#1e293b; line-height:1.35; }
    .mm-grid-sub { font-size:.67rem; color:#94a3b8; margin-top:4px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

    .mm-blog-ph { background:linear-gradient(135deg,#1a2a4a,#2c6e9e) !important; color:rgba(255,255,255,.3) !important; }
    .mm-blog-cat { display:inline-block; font-size:.6rem; font-weight:700; padding:2px 7px; border-radius:8px; margin-bottom:4px; }

    .mm-testi-feat { width:240px; flex-shrink:0; background:linear-gradient(145deg,#1a2a4a 0%,#2c6e9e 100%); padding:24px 20px; display:flex; flex-direction:column; color:#fff; }
    .mm-testi-stars { color:#f59e0b; font-size:1.05rem; letter-spacing:.05em; margin-bottom:10px; flex-shrink:0; }
    .mm-testi-quote { font-size:.82rem; color:rgba(255,255,255,.85); line-height:1.65; font-style:italic; flex:1; margin-bottom:16px; overflow:hidden; }
    .mm-testi-author { display:flex; align-items:center; gap:9px; margin-bottom:10px; flex-shrink:0; }
    .mm-testi-avatar { width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,.2); border:2px solid rgba(255,255,255,.28); color:#fff; display:flex; align-items:center; justify-content:center; font-size:.8rem; font-weight:700; flex-shrink:0; }
    .mm-testi-dest { display:inline-flex; align-items:center; gap:4px; font-size:.67rem; background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.2); color:rgba(255,255,255,.72); padding:2px 9px; border-radius:10px; font-weight:600; width:fit-content; flex-shrink:0; }
    .mm-testi-grid { flex:1; overflow-y:auto; padding:10px 14px; display:grid; grid-template-columns:1fr 1fr; gap:9px; align-content:start; scrollbar-width:thin; scrollbar-color:#e8e8e8 transparent; }
    .mm-testi-card { background:#fff; border:1px solid #ebebeb; border-radius:10px; padding:10px 12px; display:flex; flex-direction:column; gap:5px; transition:border-color .15s, box-shadow .15s; }
    .mm-testi-card:hover { border-color:#d0d0d0; box-shadow:0 4px 14px rgba(0,0,0,.07); }
    .mm-tc-stars { color:#f59e0b; font-size:.8rem; letter-spacing:.03em; flex-shrink:0; }
    .mm-tc-quote { font-size:.72rem; color:#555; line-height:1.55; font-style:italic; flex:1; }
    .mm-tc-footer { display:flex; align-items:center; gap:7px; margin-top:4px; flex-shrink:0; }
    .mm-tc-avatar { width:24px; height:24px; border-radius:50%; background:linear-gradient(135deg,var(--primary),var(--secondary)); color:#fff; display:flex; align-items:center; justify-content:center; font-size:.6rem; font-weight:700; flex-shrink:0; }

    .mm-foot {
        background:#fafbfc; border-top:1px solid #f0f0f0;
        padding:9px 16px; display:flex; align-items:center; gap:6px; flex-shrink:0;
    }
    .mm-foot a { display:inline-flex; align-items:center; gap:6px; padding:6px 13px; border-radius:8px; font-size:.77rem; font-weight:600; text-decoration:none; transition:.15s; }
    .mm-foot-all { background:var(--primary); color:#fff; }
    .mm-foot-all:hover { opacity:.88; }
    .mm-foot-cal { background:#eef5ff; color:var(--secondary); }
    .mm-foot-cal:hover { background:#ddeeff; }
    .mm-foot-magic { border:1px solid #e8e8e8; color:#666; background:#fff; }
    .mm-foot-magic:hover { background:#f4f4f4; }
    .mm-foot-sep { flex:1; }

    .mm-popular { background:#f8f9fb; border-top:1px solid #f0f0f0; padding:8px 16px; display:flex; align-items:center; gap:7px; flex-wrap:wrap; flex-shrink:0; }
    .mm-pop-lbl { font-size:.7rem; font-weight:700; color:#f97316; text-transform:uppercase; letter-spacing:.05em; white-space:nowrap; display:flex; align-items:center; gap:4px; }
    .mm-pop-chip { display:inline-flex; align-items:center; gap:5px; padding:3px 10px; background:#fff; border:1px solid #e8edf5; border-radius:20px; font-size:.76rem; color:#444; text-decoration:none; font-weight:500; transition:.12s; }
    .mm-pop-chip:hover { background:#eef5ff; border-color:#c8dcf5; color:var(--secondary); }

    .nav-right { display:flex; align-items:center; gap:4px; flex-shrink:0; }

    .nav-icon-btn {
        width:36px; height:36px; border-radius:9px; border:none; background:none;
        cursor:pointer; display:flex; align-items:center; justify-content:center;
        color:#555; font-size:.95rem; transition:.15s; text-decoration:none;
    }
    .nav-icon-btn:hover { background:#f0f0f0; color:var(--primary); }

    #headerSearchPopup {
        display:none; position:absolute; top:calc(100%+8px); right:0;
        width:360px; background:#fff; border-radius:14px;
        box-shadow:0 10px 40px rgba(0,0,0,.15); border:1px solid #e4e4e4;
        z-index:1050; overflow:hidden;
    }
    @media (max-width:992px) {
        #headerSearchPopup { position:fixed; top:70px; left:8px; right:8px; width:auto; }
    }

    .lang-pill {
        display:flex; align-items:center; gap:5px; padding:5px 9px 5px 7px;
        border-radius:9px; background:#f5f5f5; cursor:pointer;
        border:1px solid #e4e4e4; position:relative; user-select:none; transition:.15s;
    }
    .lang-pill:hover { background:#ebebeb; }
    .lang-pill-flag { font-size:1rem; }
    .lang-pill-code { font-size:.77rem; font-weight:700; color:#333; }
    .lang-pill-arrow { font-size:.55rem; color:#aaa; transition:transform .2s; }
    .lang-pill.open .lang-pill-arrow { transform:rotate(180deg); }
    .lang-dropdown-panel {
        position:absolute; top:calc(100%+6px); right:0;
        width:175px; background:#fff; border-radius:11px;
        box-shadow:0 8px 28px rgba(0,0,0,.12); z-index:910;
        opacity:0; visibility:hidden; transform:translateY(-4px);
        transition:all .18s; overflow:hidden; border:1px solid #e4e4e4; pointer-events:none;
    }
    .lang-pill.open .lang-dropdown-panel { opacity:1; visibility:visible; transform:translateY(0); pointer-events:all; }
    .lang-dp-item { display:flex; align-items:center; gap:10px; padding:9px 14px; text-decoration:none; color:#444; font-size:.83rem; transition:.12s; }
    .lang-dp-item:hover { background:#f5f5f5; }
    .lang-dp-item.active { background:#f0f6ff; color:var(--primary); font-weight:700; }
    .lang-dp-name { flex:1; }
    .lang-dp-check { color:var(--secondary); font-size:.72rem; }

    .auth-user-pill {
        display:flex; align-items:center; gap:6px; padding:5px 10px 5px 6px;
        border-radius:9px; background:#f5f5f5; cursor:pointer;
        border:1px solid #e4e4e4; position:relative; transition:.15s;
    }
    .auth-user-pill:hover { background:#ebebeb; }
    .avatar-sm {
        width:28px; height:28px; border-radius:7px;
        background:linear-gradient(135deg,var(--primary),var(--secondary)); color:#fff;
        display:flex; align-items:center; justify-content:center;
        font-size:.73rem; font-weight:700; flex-shrink:0; letter-spacing:-.5px;
    }
    .pill-name { font-size:.82rem; font-weight:600; color:#333; max-width:90px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
    .pill-arrow { font-size:.55rem; color:#aaa; transition:transform .2s; }
    .user-dropdown-panel {
        position:absolute; top:calc(100% + 8px); right:0;
        width:238px; background:#fff; border-radius:13px;
        box-shadow:0 10px 36px rgba(0,0,0,.14); z-index:910;
        opacity:0; visibility:hidden; transform:translateY(-6px);
        transition:opacity .18s, transform .18s, visibility .18s;
        overflow:hidden; border:1px solid #e4e4e4; pointer-events:none;
    }
    .auth-user-pill.open .user-dropdown-panel { opacity:1; visibility:visible; transform:translateY(0); pointer-events:all; }
    .auth-user-pill.open .pill-arrow { transform:rotate(180deg); }
    .udp-head { padding:13px 15px; border-bottom:1px solid #f0f0f0; background:#fafbfc; }
    .udp-head .udp-name { font-weight:700; font-size:.87rem; color:#222; }
    .udp-head .udp-email { font-size:.73rem; color:#999; margin-top:2px; }
    .udp-item { display:flex; align-items:center; gap:9px; padding:9px 15px; text-decoration:none; color:#444; font-size:.82rem; font-weight:500; transition:.12s; }
    button.udp-item { border:none; background:none; width:100%; cursor:pointer; font-family:inherit; text-align:left; box-sizing:border-box; }
    .udp-item i { width:15px; text-align:center; color:#ccc; font-size:.8rem; }
    .udp-item:hover { background:#f7f8fa; color:#222; }
    .udp-item:hover i { color:var(--secondary); }
    .udp-divider { height:1px; background:#f0f0f0; }
    .udp-logout { display:flex; align-items:center; justify-content:center; gap:6px; padding:9px; margin:6px 10px 8px; border-radius:8px; background:#fff0f0; color:#c0392b; text-decoration:none; font-weight:700; font-size:.81rem; transition:.15s; }
    .udp-logout:hover { background:#ffe4e4; }

    .btn-nav-login {
        display:flex; align-items:center; gap:7px; padding:8px 18px;
        background:var(--primary); color:#fff; border-radius:9px; font-size:.84rem;
        font-weight:600; cursor:pointer; transition:.15s; text-decoration:none; border:none;
    }
    .btn-nav-login:hover { background:var(--secondary); color:#fff; }

    .mobile-menu-btn {
        display:none; align-items:center; justify-content:center;
        width:38px; height:38px; border-radius:9px; border:none;
        background:#f5f5f5; cursor:pointer; color:var(--primary); font-size:1.1rem;
        flex-shrink:0; transition:.15s;
    }
    .mobile-menu-btn:hover { background:#e8e8e8; }

    .mobile-nav-overlay {
        display:none; position:fixed; inset:0;
        background:rgba(0,0,0,.5); z-index:1100; backdrop-filter:blur(3px);
    }
    .mobile-nav-overlay.open { display:block; }

    .mobile-nav-drawer {
        position:fixed; top:0; right:0; bottom:0; width:300px; max-width:88vw;
        background:#fff; z-index:1101; transform:translateX(100%);
        transition:transform .3s cubic-bezier(.4,0,.2,1);
        display:flex; flex-direction:column; box-shadow:-8px 0 40px rgba(0,0,0,.18);
        overflow:hidden;
    }
    .mobile-nav-drawer.open { transform:translateX(0); }
    .mobile-drawer-head {
        display:flex; align-items:center; justify-content:space-between;
        padding:15px 18px; border-bottom:1px solid #f0f0f0; flex-shrink:0; background:#fff;
    }
    .mobile-drawer-head .logo { font-size:1.2rem; }
    .mobile-drawer-close {
        width:34px; height:34px; border-radius:8px; border:none;
        background:#f5f5f5; cursor:pointer; color:#555; font-size:1rem;
        display:flex; align-items:center; justify-content:center; transition:.12s;
    }
    .mobile-drawer-close:hover { background:#e8e8e8; color:var(--primary); }
    .mobile-drawer-body { flex:1; overflow-y:auto; padding:10px 12px; }
    .mobile-nav-item {
        display:flex; align-items:center; gap:11px;
        padding:11px 13px; border-radius:10px; text-decoration:none;
        color:#333; font-size:.92rem; font-weight:500; margin-bottom:2px; transition:.12s;
    }
    .mobile-nav-item:hover { background:#f5f5f5; color:var(--primary); }
    .mobile-nav-item.nav-active { background:#f0f4ff; color:var(--primary); font-weight:700; }
    .mobile-nav-item i { width:18px; text-align:center; color:#bbb; font-size:.9rem; flex-shrink:0; }
    .mobile-nav-item:hover i, .mobile-nav-item.nav-active i { color:var(--secondary); }
    .mobile-nav-item-akcija { background:linear-gradient(135deg,#ffeaea,#fff0f0); color:#c0392b !important; font-weight:700 !important; border-radius:10px; }
    .mobile-nav-item-akcija i { color:#e74c3c !important; }
    .mobile-nav-divider { height:1px; background:#f0f0f0; margin:8px 4px; }
    .mobile-nav-section-lbl { padding:10px 13px 4px; font-size:.68rem; font-weight:800; color:#aaa; text-transform:uppercase; letter-spacing:.06em; }
    .mobile-drawer-foot { padding:14px 14px; border-top:1px solid #f0f0f0; flex-shrink:0; background:#fafbfc; }

    .hero-info-strip {
        background: var(--primary);
        border-top: 1px solid rgba(255,255,255,.1);
        padding: 0;
    }
    .hero-strip-inner {
        display: flex; align-items: center; justify-content: center;
        gap: 0; flex-wrap: wrap;
    }
    .hero-strip-item {
        display: flex; align-items: center; gap: 10px;
        padding: 14px 28px; color: #fff;
    }
    .hero-strip-item i { font-size: 1.3rem; opacity: .7; }
    .strip-val { display: block; font-weight: 800; font-size: 1.05rem; line-height: 1.1; }
    .strip-lbl { display: block; font-size: .72rem; opacity: .7; text-transform: uppercase; letter-spacing: .06em; }
    .hero-strip-sep { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

    .main-search-links {
        display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 16px;
    }
    .main-search-links .btn { flex: 1; min-width: 200px; max-width: 260px; justify-content: center; text-align: center; }
    @media (max-width: 480px) {
        .main-search-links { flex-direction: column; align-items: center; }
        .main-search-links .btn { width: 100%; max-width: 100%; }
        .hero-strip-item { padding: 10px 14px; }
        .hero-strip-sep { display: none; }
    }

    @media (max-width: 992px) {
        .nav-main { display:none; }
        .mobile-menu-btn { display:flex; }
        .megamenu { display:none !important; }
        .pill-name { display:none !important; }
        .lang-pill-code { display:none; }
        #headerSearchPopup { top:70px; }
    }
    @media (min-width: 993px) {
        .mobile-nav-overlay, .mobile-nav-drawer { display:none !important; }
    }

    .trip-details { background:#f8f8f8; padding:60px 0 80px; }
    .trip-layout { display:grid; grid-template-columns:1fr 240px; gap:28px; align-items:start; }
    @media (max-width:900px) { .trip-layout { grid-template-columns:1fr; } .scroll-tabs { display:none !important; } }
    .trip-info { background:#fff; border-radius:12px; box-shadow:0 2px 10px rgba(0,0,0,.06); padding:28px 30px; }
    .info-section { margin-bottom:32px; padding-bottom:26px; border-bottom:1px solid #f0f0f0; scroll-margin-top:110px; }
    .info-section:last-child { border-bottom:none; margin-bottom:0; }
    .info-section h2 { color:var(--primary); margin-bottom:16px; font-size:1.35rem; display:flex; align-items:center; gap:8px; }
    .info-section h2 i { color:var(--secondary); font-size:1.05rem; }
    .info-section p { color:#555; line-height:1.8; margin-bottom:0; }
    .departures-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(250px,1fr)); gap:14px; }
    .departure-card { background:#fff; border:1px solid #eef0f2; border-radius:14px; padding:18px; transition:.2s; box-shadow:0 2px 10px rgba(0,0,0,.03); }
    .departure-card:hover { border-color:var(--secondary); box-shadow:0 12px 28px rgba(0,0,0,.08); transform:translateY(-3px); }
    .departure-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; padding-bottom:12px; border-bottom:1px solid #f2f2f2; }
    .departure-header h3 { margin:0; font-size:.98rem; color:var(--primary); font-weight:700; }
    .availability-badge { padding:3px 10px; border-radius:20px; font-size:.68rem; font-weight:800; text-transform:uppercase; letter-spacing:.03em; }
    .availability-badge.available { background:#e8f5e9; color:#2e7d32; }
    .availability-badge.sold-out { background:#fce4ec; color:#c62828; }
    .availability-badge.pending-price { background:#fff8e1; color:#f9a825; }
    .availability-badge.last-minute { background:#fff3e0; color:#e65100; }
    .departure-dates { display:flex; flex-direction:column; gap:8px; margin-bottom:14px; }
    .date-group { display:flex; align-items:center; gap:10px; padding:9px 11px; background:#f8f9fb; border-radius:10px; }
    .date-icon { width:32px; height:32px; background:var(--primary); border-radius:9px; display:flex; align-items:center; justify-content:center; color:#fff; font-size:.82rem; flex-shrink:0; }
    .date-info { display:flex; flex-direction:column; }
    .date-label { font-size:.7rem; color:#999; font-weight:600; text-transform:uppercase; letter-spacing:.03em; }
    .date-value { font-size:.9rem; color:#222; font-weight:700; }
    .departure-details { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-bottom:14px; }
    .detail-item { display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap:4px; padding:11px 6px; background:#f8f9fb; border-radius:10px; }
    .detail-item i { color:var(--secondary); font-size:1rem; }
    .detail-item span { font-size:1rem; color:#222; font-weight:800; }
    .detail-item .price { font-size:1rem; color:var(--accent); font-weight:800; }
    .detail-item.no-price i { color:#bbb; }
    .detail-item.no-price .price { color:#bbb; }
    .btn-block { width:100%; justify-content:center; }
    .btn-disabled, .btn-disabled:hover { background:#e4e4e4 !important; color:#999 !important; cursor:not-allowed !important; box-shadow:none !important; transform:none !important; }
    .section-subtitle { text-align:center; color:#777; margin-bottom:20px; font-size:1rem; }
    .flight-note { background:#fffbeb; padding:12px 14px; border-radius:8px; border-left:3px solid #f59e0b; margin-top:16px; }
    .flight-note p { margin:0; color:#78350f; font-size:.86rem; }
    .day-plan { margin-bottom:16px; border-radius:10px; overflow:hidden; border:1px solid #e4e4e4; }
    .day-header { background:var(--primary); color:#fff; padding:11px 16px; font-weight:600; font-size:.95rem; display:flex; align-items:center; gap:7px; }
    .day-content { padding:16px 18px; background:#fff; }
    .day-content p { color:#555; line-height:1.75; margin-bottom:10px; }
    .day-content ul { list-style:none; padding:0; margin:0 0 10px; }
    .day-content li { padding-left:16px; position:relative; margin-bottom:5px; color:#555; }
    .day-content li:before { content:"•"; color:var(--secondary); position:absolute; left:0; font-weight:700; }
    .included-list, .excluded-list { list-style:none; margin:0; padding:0; }
    .included-list li, .excluded-list li { padding:9px 0 9px 34px; position:relative; border-bottom:1px solid #f5f5f5; color:#444; font-size:.9rem; }
    .included-list li:last-child, .excluded-list li:last-child { border-bottom:none; }
    .included-list li:before { content:"✓"; color:#2e7d32; background:#e8f5e9; position:absolute; left:0; top:9px; width:22px; height:22px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.78rem; font-weight:700; }
    .excluded-list li:before { content:"✕"; color:#c62828; background:#fce4ec; position:absolute; left:0; top:9px; width:22px; height:22px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.75rem; font-weight:700; }
    .visa-info { background:#f0f7ff; padding:14px 16px; border-radius:8px; margin-top:10px; border-left:3px solid var(--secondary); }
    .visa-info h4 { display:flex; align-items:center; gap:7px; margin:0 0 6px; color:var(--primary); font-size:.92rem; }
    .visa-info p { margin:0 0 8px; font-size:.86rem; color:#555; }
    .visa-status { display:inline-flex; align-items:center; gap:5px; padding:4px 11px; border-radius:20px; font-weight:600; font-size:.8rem; }
    .visa-not-required { background:#e8f5e9; color:#2e7d32; }
    .visa-required { background:#fce4ec; color:#c62828; }
    .visa-country-list { display:flex; flex-direction:column; gap:8px; }
    .visa-country-row { display:flex; align-items:center; flex-wrap:wrap; gap:8px; padding:8px 12px; background:#f8f9fa; border-radius:8px; font-size:.86rem; }
    .visa-country-row strong { flex:1; min-width:100px; }
    .visa-price-extra { margin-top:6px; width:100%; padding:5px 10px; background:#f3e5f5; border-radius:6px; font-size:.82rem; color:#6a1b9a; display:flex; align-items:center; gap:6px; }
    .visa-price-extra span { color:#999; font-size:.76rem; }
    .practical-info-list { display:flex; flex-direction:column; gap:8px; }
    .practical-info-row { padding:8px 12px; background:#f8f9fa; border-radius:8px; font-size:.86rem; color:#555; }
    .practical-info-row strong { color:var(--primary); margin-right:5px; }
    .sidebar-extra-widget { margin-top:16px; padding-top:16px; border-top:1px solid #f0f0f0; display:flex; flex-direction:column; gap:16px; }
    .sw-block-title { font-size:.72rem; font-weight:700; color:#aaa; text-transform:uppercase; letter-spacing:.03em; margin:0 0 10px; display:flex; align-items:center; gap:6px; }
    .sw-icon-row { display:flex; gap:8px; flex-wrap:wrap; }
    .sw-icon-btn { width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:.8rem; transition:.15s; box-shadow:0 2px 6px rgba(0,0,0,.08); border:none; cursor:pointer; text-decoration:none; flex-shrink:0; }
    .sw-icon-btn:hover { transform:translateY(-2px); box-shadow:0 4px 10px rgba(0,0,0,.15); }
    .sw-fb { background:#1877f2; }
    .sw-wa { background:#25d366; }
    .sw-ig { background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
    .sw-vb { background:#7360f2; }
    .sw-tt { background:#000; }
    .sw-copy { background:#8b95a5; }
    .sw-contact-row { display:flex; align-items:center; gap:9px; font-size:.8rem; color:#555; padding:0; }
    .sw-contact-row + .sw-contact-row { margin-top:8px; }
    .sw-contact-row i { width:15px; text-align:center; color:var(--secondary); font-size:.78rem; flex-shrink:0; }
    .sw-contact-row a { color:#555; text-decoration:none; overflow-wrap:anywhere; }
    .sw-contact-row a:hover { color:var(--secondary); }
    .site-tooltip { position:fixed; z-index:9999; background:#0f172a; color:#f8fafc; border-radius:10px; padding:8px 12px; font-size:.76rem; font-weight:600; line-height:1.3; box-shadow:0 8px 28px rgba(0,0,0,.32); pointer-events:none; max-width:220px; text-align:center; border:1px solid rgba(255,255,255,.07); opacity:0; transform:translateY(4px); transition:opacity .12s,transform .12s; display:none; }
    .site-tooltip.show { display:block; opacity:1; transform:translateY(0); }
    .site-tooltip:after { content:""; position:absolute; left:50%; bottom:-5px; transform:translateX(-50%); border:5px solid transparent; border-top-color:#0f172a; }
    .scroll-tabs { position:sticky; top:105px; background:#fff; border-radius:12px; box-shadow:0 2px 10px rgba(0,0,0,.06); padding:16px; border:1px solid #e4e4e4; }
    .scroll-tabs h3 { color:var(--primary); margin:0 0 12px; font-size:.95rem; padding-bottom:10px; border-bottom:1px solid #f0f0f0; }
    .tab-list { list-style:none; padding:0; margin:0; }
    .tab-item { margin-bottom:2px; }
    .tab-link { display:flex; align-items:center; gap:9px; padding:8px 10px; color:#555; text-decoration:none; border-radius:7px; transition:.12s; font-size:.82rem; font-weight:500; }
    .tab-link:hover { background:#f3f3f3; color:var(--primary); }
    .tab-link.active { background:var(--primary); color:#fff; }
    .tab-link i { width:15px; text-align:center; font-size:.85rem; }
    .itinerary-days-list { display:flex; flex-wrap:wrap; padding:4px 0 0 24px; list-style:none; gap:3px; }
    .itinerary-day a { display:flex; align-items:center; gap:3px; font-size:.7rem; color:#888; text-decoration:none; padding:2px 6px; border-radius:4px; background:#f0f0f0; }
    .itinerary-day a:hover { background:#e0e0e0; color:var(--primary); }
    .trip-reserve-cta { padding:24px 0 8px; margin-top:8px; }
    .sidebar-reserve-btn { font-size:.84rem; padding:10px 14px; width:100%; justify-content:center; }
    .dest-description h2, .dest-description h3 { color:var(--primary); margin:14px 0 6px; }
    .dest-description p { color:#555; line-height:1.8; margin-bottom:10px; }
    .dest-description ul, .dest-description ol { color:#555; line-height:1.8; padding-left:20px; margin-bottom:10px; }
    .dest-description li { margin-bottom:4px; }
    .dest-description strong { color:#333; }
    .dest-description a { color:var(--secondary); }
    .gallery-section-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
    .gallery-count { font-size:.78rem; color:#aaa; background:#f0f2f7; padding:3px 10px; border-radius:12px; font-weight:600; }
    .dest-gallery-grid {
        display:grid;
        grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
        gap:12px;
    }
    .dest-gallery-item {
        border-radius:12px; overflow:hidden; cursor:pointer;
        background:#e8eaf0;
        box-shadow:0 2px 8px rgba(0,0,0,.08);
        transition:transform .2s, box-shadow .2s;
    }
    .dest-gallery-item:hover { transform:translateY(-3px); box-shadow:0 8px 24px rgba(0,0,0,.15); }
    .dest-gallery-item.is-primary { box-shadow:0 0 0 2px var(--secondary), 0 4px 16px rgba(0,0,0,.12); }
    .dgi-img-wrap { position:relative; overflow:hidden; aspect-ratio:4/3; }
    .dgi-img-wrap img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .35s; }
    .dest-gallery-item:hover .dgi-img-wrap img { transform:scale(1.06); }
    .dgi-overlay {
        position:absolute; inset:0;
        background:rgba(0,0,0,.3);
        display:flex; align-items:center; justify-content:center;
        opacity:0; transition:opacity .2s;
        color:#fff; font-size:1.4rem;
    }
    .dest-gallery-item:hover .dgi-overlay { opacity:1; }
    .dgi-primary-badge {
        position:absolute; top:8px; left:8px;
        background:#f39c12; color:#fff;
        font-size:.68rem; padding:3px 8px; border-radius:8px; font-weight:800;
    }
    .dgi-meta {
        padding:10px 12px; background:#fff;
        border-top:1px solid #f0f0f0;
    }
    .dgi-caption { font-size:.82rem; font-weight:600; color:#333; margin-bottom:4px; line-height:1.4; }
    .dgi-info { display:flex; gap:12px; font-size:.73rem; color:#aaa; flex-wrap:wrap; }
    .dgi-info span { display:flex; align-items:center; gap:4px; }
    .dgi-info i { font-size:.68rem; color:var(--secondary); }
    #destGalleryLb {
        display:none; position:fixed; inset:0; z-index:9500;
        background:rgba(0,0,0,.92); backdrop-filter:blur(6px);
        align-items:center; justify-content:center; flex-direction:column;
    }
    #destGalleryLb.open { display:flex; }
    #destGalleryLb .lb-img-wrap { position:relative; flex:1; display:flex; align-items:center; justify-content:center; padding:60px 80px; min-height:0; }
    #destGalleryLb .lb-img-wrap img { max-width:100%; max-height:75vh; border-radius:10px; object-fit:contain; box-shadow:0 8px 40px rgba(0,0,0,.5); }
    #destGalleryLb .lb-close {
        position:absolute; top:16px; right:20px;
        background:rgba(255,255,255,.12); border:none; color:#fff;
        width:40px; height:40px; border-radius:50%; font-size:1.3rem; cursor:pointer;
        display:flex; align-items:center; justify-content:center; transition:.15s; z-index:2;
    }
    #destGalleryLb .lb-close:hover { background:rgba(255,255,255,.25); }
    #destGalleryLb .lb-nav {
        position:absolute; top:50%; transform:translateY(-50%);
        background:rgba(255,255,255,.12); border:none; color:#fff;
        width:48px; height:48px; border-radius:50%; font-size:1.1rem; cursor:pointer;
        display:flex; align-items:center; justify-content:center; transition:.15s; z-index:2;
    }
    #destGalleryLb .lb-nav:hover { background:rgba(255,255,255,.28); }
    #destGalleryLb .lb-prev { left:16px; }
    #destGalleryLb .lb-next { right:16px; }
    #destGalleryLb .lb-meta {
        width:100%; padding:12px 24px 18px;
        display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:8px;
        background:linear-gradient(transparent,rgba(0,0,0,.6));
        flex-shrink:0;
    }
    #destGalleryLb .lb-caption { color:#fff; font-size:.9rem; font-weight:600; }
    #destGalleryLb .lb-info { display:flex; gap:16px; font-size:.78rem; color:rgba(255,255,255,.65); }
    #destGalleryLb .lb-info span { display:flex; align-items:center; gap:5px; }
    #destGalleryLb .lb-counter {
        position:absolute; top:18px; left:50%; transform:translateX(-50%);
        background:rgba(0,0,0,.5); color:#fff; font-size:.78rem; font-weight:700;
        padding:4px 12px; border-radius:20px;
    }
    #destGalleryLb .lb-thumbs {
        display:flex; gap:6px; padding:8px 24px 16px; overflow-x:auto; flex-shrink:0;
        scrollbar-width:thin; scrollbar-color:rgba(255,255,255,.2) transparent;
    }
    #destGalleryLb .lb-thumb {
        width:56px; height:44px; border-radius:6px; object-fit:cover; cursor:pointer;
        opacity:.5; transition:.15s; flex-shrink:0; border:2px solid transparent;
    }
    #destGalleryLb .lb-thumb.active { opacity:1; border-color:#fff; }
    #destGalleryLb .lb-thumb:hover { opacity:.8; }
    #galleryLb { display:none; position:fixed; inset:0; z-index:9998; background:rgba(0,0,0,.92); align-items:center; justify-content:center; cursor:pointer; }
    #galleryLb.open { display:flex; }
    #galleryLbImg { max-width:92vw; max-height:88vh; border-radius:10px; object-fit:contain; }
    #galleryLbClose { position:absolute; top:16px; right:20px; color:#fff; font-size:2rem; cursor:pointer; background:none; border:none; line-height:1; opacity:.7; }
    #galleryLbClose:hover { opacity:1; }

    .hero-countries-bar { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin-bottom:14px; }
    .hero-country-pill { display:inline-flex; align-items:center; gap:6px; padding:5px 13px; background:rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.4); border-radius:20px; color:#fff; font-size:.82rem; font-weight:600; backdrop-filter:blur(6px); }
    .hero-info-pills { display:flex; gap:8px; flex-wrap:wrap; justify-content:center; margin:12px 0 0; }
    .hip { display:inline-flex; align-items:center; gap:6px; padding:6px 14px; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.35); border-radius:20px; color:#fff; font-size:.82rem; font-weight:600; backdrop-filter:blur(4px); }
    .hip i { font-size:.78rem; opacity:.8; }
    .hip-price { background:rgba(var(--accent-rgb,231,76,60),.85); border-color:transparent; font-size:.92rem; }

    .results-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:18px; }
    .result-card { background:#fff; border-radius:12px; overflow:hidden; border:1px solid #e8e8e8; transition:border-color .15s,box-shadow .15s; display:flex; flex-direction:column; }
    .result-card:hover { border-color:#bbb; box-shadow:0 4px 18px rgba(0,0,0,.09); }
    .rc-img { height:185px; background-size:cover; background-position:center; position:relative; flex-shrink:0; }
    .rc-badge-featured { position:absolute; top:10px; left:10px; background:var(--primary); color:#fff; font-size:.7rem; font-weight:700; padding:3px 9px; border-radius:20px; }
    .rc-badge-action { position:absolute; top:10px; right:10px; background:var(--accent); color:#fff; font-size:.7rem; font-weight:700; padding:3px 9px; border-radius:20px; }
    .rc-badge-visa { position:absolute; top:36px; right:10px; background:#7b1fa2; color:#fff; font-size:.7rem; font-weight:700; padding:3px 9px; border-radius:20px; }
    .rc-price-box { position:absolute; bottom:10px; left:10px; }
    .rc-price-old { background:rgba(0,0,0,.55); color:#ddd; font-size:.7rem; padding:2px 8px; border-radius:20px; text-decoration:line-through; display:inline-block; margin-bottom:3px; }
    .rc-price-new { background:var(--accent); color:#fff; font-size:.9rem; font-weight:800; padding:4px 10px; border-radius:20px; display:inline-block; }
    .rc-body { padding:14px 16px; flex:1; display:flex; flex-direction:column; }
    .rc-location { font-size:.74rem; color:#999; margin-bottom:5px; display:flex; align-items:center; gap:5px; }
    .rc-name { font-size:1.02rem; font-weight:700; color:#222; margin-bottom:6px; line-height:1.3; }
    .rc-desc { font-size:.8rem; color:#666; line-height:1.6; flex:1; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; margin-bottom:10px; }
    .rc-meta { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:12px; }
    .rc-meta-item { font-size:.74rem; color:#777; display:flex; align-items:center; gap:4px; }
    .rc-meta-item i { color:var(--secondary); font-size:.75rem; }
    .rc-actions { display:flex; gap:7px; }
    .rc-btn-detail { flex:1; padding:9px; background:var(--primary); color:#fff; border:none; border-radius:8px; font-size:.82rem; font-weight:700; cursor:pointer; text-decoration:none; text-align:center; transition:opacity .15s; display:flex; align-items:center; justify-content:center; }
    .rc-btn-detail:hover { opacity:.88; color:#fff; }
    .rc-btn-book { padding:9px 14px; background:var(--accent); color:#fff; border:none; border-radius:8px; font-size:.82rem; font-weight:700; cursor:pointer; transition:opacity .15s; white-space:nowrap; }
    .rc-btn-book:hover { opacity:.88; }
    .rc-next-dep { font-size:.72rem; background:#e8f5e9; color:#2e7d32; padding:2px 8px; border-radius:10px; font-weight:700; display:inline-flex; align-items:center; gap:3px; }
    .rc-next-dep.past { background:#f5f5f5; color:#aaa; }

    .itinerary-accordion { display:flex; flex-direction:column; gap:6px; }
    .itin-day { border:1px solid #e4e4e4; border-radius:10px; overflow:hidden; }
    .itin-day-header {
        width:100%; display:flex; align-items:center; justify-content:space-between;
        padding:12px 16px; background:#fff; border:none; cursor:pointer;
        font-size:.95rem; font-weight:600; color:var(--primary); text-align:left;
        transition:background .15s;
    }
    .itin-day-header:hover { background:#f8f8f8; }
    .itin-day.open .itin-day-header { background:#f0f4ff; }
    .itin-day-num { font-size:.75rem; font-weight:800; background:var(--primary); color:#fff; padding:2px 8px; border-radius:10px; margin-right:8px; }
    .itin-chevron { font-size:.75rem; color:#aaa; transition:transform .25s; flex-shrink:0; }
    .itin-day.open .itin-chevron { transform:rotate(180deg); }
    .itin-day-body { border-top:1px solid #f0f0f0; background:#fafafa; }
    .bm-date-card { display:flex; align-items:center; justify-content:space-between; padding:12px 14px; border:1.5px solid #e4e4e4; border-radius:10px; cursor:pointer; margin-bottom:8px; transition:.15s; background:#fff; }
    .bm-date-card:hover { border-color:var(--primary); background:#f7fbff; }
    .bm-date-card.selected { border-color:var(--primary); background:#f0f6ff; }
    .bm-date-card-dates { font-weight:700; color:#222; font-size:.92rem; }
    .bm-date-card-dates i { color:var(--secondary); margin-right:5px; font-size:.8rem; }
    .bm-date-card-meta { font-size:.76rem; color:#aaa; margin-top:2px; }
    .bm-date-card-price { font-weight:800; color:var(--accent); font-size:1rem; white-space:nowrap; margin-left:14px; }
    

.blog-hero { background:linear-gradient(135deg,#1a2a4a 0%,#2c6e9e 100%); padding:96px 0 22px; color:#fff; }
.blog-hero-inner { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.blog-hero-left { flex:1; min-width:220px; }
.blog-hero-tag { font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; opacity:.55; margin-bottom:6px; }
.blog-hero-title { margin:0 0 4px; font-size:1.6rem; font-weight:900; line-height:1.2; }
.blog-hero-sub { margin:0 0 12px; opacity:.6; font-size:.84rem; }
.blog-hero-stats { display:inline-flex; gap:0; background:rgba(255,255,255,.1); border-radius:8px; padding:8px 0; border:1px solid rgba(255,255,255,.12); }
.blog-stat { text-align:center; padding:0 14px; }
.blog-stat-val { display:block; font-size:1rem; font-weight:800; }
.blog-stat-lbl { display:block; font-size:.6rem; opacity:.5; text-transform:uppercase; letter-spacing:.05em; margin-top:1px; }
.blog-stat-sep { width:1px; background:rgba(255,255,255,.18); }
.blog-search-bar { background:#fff; border-radius:8px; padding:8px 12px; display:flex; gap:6px; align-items:center; box-shadow:0 3px 14px rgba(0,0,0,.15); }
.blog-search-bar input { flex:1; border:none; outline:none; font-size:.9rem; font-family:inherit; color:#333; }
.blog-search-bar button { padding:7px 14px; background:var(--secondary); color:#fff; border:none; border-radius:7px; font-size:.84rem; font-weight:700; cursor:pointer; white-space:nowrap; }

.blog-featured { display:grid; grid-template-columns:1.6fr 1fr; gap:0; border-radius:16px; overflow:hidden; box-shadow:0 4px 24px rgba(0,0,0,.1); margin-bottom:36px; min-height:340px; }
.blog-featured-img { background-size:cover; background-position:center; position:relative; }
.blog-featured-body { background:#fff; padding:32px 28px; display:flex; flex-direction:column; }
.blog-featured-cat { display:inline-flex; align-items:center; gap:5px; padding:4px 12px; border-radius:20px; font-size:.72rem; font-weight:800; text-transform:uppercase; letter-spacing:.06em; margin-bottom:14px; }
.blog-featured-title { font-size:1.4rem; font-weight:800; color:#1a2a4a; line-height:1.3; margin:0 0 12px; text-decoration:none; display:block; }
.blog-featured-title:hover { color:var(--secondary); }
.blog-featured-excerpt { font-size:.88rem; color:#666; line-height:1.7; flex:1; }
.blog-featured-meta { display:flex; align-items:center; gap:12px; margin-top:18px; padding-top:14px; border-top:1px solid #f0f0f0; }
.blog-featured-avatar { width:36px; height:36px; border-radius:50%; background:linear-gradient(135deg,var(--primary),var(--secondary)); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:.85rem; flex-shrink:0; }
.blog-featured-author { font-size:.82rem; font-weight:700; color:#333; }
.blog-featured-date { font-size:.76rem; color:#aaa; }
.blog-featured-badge { position:absolute; top:14px; left:14px; background:#f39c12; color:#fff; font-size:.68rem; font-weight:800; padding:4px 10px; border-radius:20px; text-transform:uppercase; letter-spacing:.06em; }

.blog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(310px,1fr)); gap:22px; }
.blog-card { background:#fff; border-radius:12px; overflow:hidden; border:1px solid #e8e8e8; transition:border-color .15s,box-shadow .15s; display:flex; flex-direction:column; }
.blog-card:hover { border-color:#ccc; box-shadow:0 4px 20px rgba(0,0,0,.09); }
.blog-card-img { height:200px; background-size:cover; background-position:center; position:relative; flex-shrink:0; }
.blog-card-img-placeholder { height:200px; background:linear-gradient(135deg,#1a2a4a,#2c6e9e); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.3); font-size:3rem; }
.blog-card-cat { position:absolute; top:10px; left:10px; display:inline-flex; align-items:center; gap:4px; padding:3px 10px; border-radius:14px; font-size:.67rem; font-weight:800; text-transform:uppercase; letter-spacing:.05em; }
.blog-card-body { padding:18px; flex:1; display:flex; flex-direction:column; }
.blog-card-title { font-size:.98rem; font-weight:700; color:#1a2a4a; line-height:1.4; margin:0 0 8px; text-decoration:none; display:block; }
.blog-card-title:hover { color:var(--secondary); }
.blog-card-excerpt { font-size:.82rem; color:#777; line-height:1.6; flex:1; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; margin-bottom:14px; }
.blog-card-meta { display:flex; align-items:center; gap:10px; padding-top:12px; border-top:1px solid #f5f5f5; }
.blog-card-avatar { width:30px; height:30px; border-radius:50%; background:linear-gradient(135deg,var(--primary),var(--secondary)); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:.72rem; flex-shrink:0; }
.blog-card-author { font-size:.76rem; font-weight:600; color:#444; }
.blog-card-date { font-size:.72rem; color:#bbb; margin-left:auto; }
.blog-card-readtime { font-size:.7rem; color:#bbb; }

.blog-sidebar { display:flex; flex-direction:column; gap:20px; }
.sidebar-panel { background:#fff; border-radius:12px; border:1px solid #e8e8e8; overflow:hidden; }
.sidebar-panel-head { padding:14px 18px; border-bottom:1px solid #f0f0f0; font-size:.85rem; font-weight:800; color:#222; display:flex; align-items:center; gap:7px; }
.sidebar-panel-head i { color:var(--secondary); }
.sidebar-panel-body { padding:12px 18px; }
.sidebar-cat-item { display:flex; align-items:center; justify-content:space-between; padding:8px 0; border-bottom:1px solid #f5f5f5; text-decoration:none; color:#555; font-size:.86rem; transition:.12s; }
.sidebar-cat-item:last-child { border-bottom:none; }
.sidebar-cat-item:hover { color:var(--primary); padding-left:4px; }
.sidebar-cat-item .cnt { background:#f0f0f0; color:#888; font-size:.68rem; padding:1px 7px; border-radius:8px; font-weight:700; }
.sidebar-recent-item { display:flex; gap:10px; padding:9px 0; border-bottom:1px solid #f5f5f5; align-items:flex-start; text-decoration:none; }
.sidebar-recent-item:last-child { border-bottom:none; }
.sidebar-recent-thumb { width:52px; height:40px; border-radius:6px; background-size:cover; background-position:center; flex-shrink:0; background-color:#e8eaf0; }
.sidebar-recent-title { font-size:.8rem; font-weight:600; color:#333; line-height:1.4; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.sidebar-recent-date { font-size:.72rem; color:#bbb; margin-top:3px; }
.tag-cloud { display:flex; flex-wrap:wrap; gap:6px; }
.tag-pill { padding:4px 11px; border-radius:20px; font-size:.76rem; background:#f0f2f7; color:#555; text-decoration:none; font-weight:600; transition:.12s; }
.tag-pill:hover { background:var(--primary); color:#fff; }

.blog-pagination { display:flex; justify-content:center; gap:6px; margin-top:32px; }
.blog-page-btn { width:38px; height:38px; border-radius:9px; display:flex; align-items:center; justify-content:center; text-decoration:none; font-size:.85rem; font-weight:700; border:1.5px solid #e4e4e4; color:#555; transition:.15s; }
.blog-page-btn:hover { border-color:var(--primary); color:var(--primary); }
.blog-page-btn.active { background:var(--primary); color:#fff; border-color:var(--primary); }

.write-cta { background:linear-gradient(135deg,#1a2a4a,#2c6e9e); border-radius:14px; padding:28px 30px; color:#fff; text-align:center; margin-bottom:20px; }
.write-cta h3 { margin:0 0 8px; font-size:1.2rem; }
.write-cta p { margin:0 0 18px; opacity:.75; font-size:.88rem; }
.write-cta a { display:inline-flex; align-items:center; gap:7px; padding:10px 22px; background:#fff; color:var(--primary); border-radius:8px; font-weight:700; font-size:.88rem; text-decoration:none; transition:.15s; }
.write-cta a:hover { background:#f0f4ff; }

@media(max-width:900px) {
    .blog-featured { grid-template-columns:1fr; }
    .blog-featured-img { min-height:200px; }
    .blog-layout { flex-direction:column; }
}
@media(max-width:768px) {
    .blog-hero { padding:90px 0 20px; }
    .blog-hero-inner { flex-direction:column; gap:14px; }
    .blog-hero-left { min-width:0; width:100%; }
    .blog-hero-title { font-size:1.4rem; }
    .blog-hero-inner > div:last-child { width:100%; }
    .blog-hero-inner > div:last-child a,
    .blog-hero-inner > div:last-child form { width:100%; }
    .blog-search-bar { width:100%; box-sizing:border-box; }
    .blog-main-layout {
        flex-direction:column !important;
    }
    aside.blog-sidebar {
        width:100% !important;
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:12px;
    }
    .sidebar-panel { margin-bottom:0; }
    .blog-grid { grid-template-columns:1fr; gap:14px; }
    .blog-card-img { height:160px; }
    .blog-featured { min-height:auto; }
    .blog-featured-img { min-height:180px; }
    .blog-featured-body { padding:18px; }
    .blog-featured-title { font-size:1.1rem; }
    .blog-pagination { flex-wrap:wrap; }
}
@media(max-width:480px) {
    aside.blog-sidebar { grid-template-columns:1fr; }
    .blog-hero-stats { flex-wrap:wrap; }
}

.pub-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    margin-bottom: 1.2rem;
    transition: 0.2s;
}

.form-section {
    background: white;
    padding: 1.8rem 2rem;
    margin-bottom: 1.6rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #eef2f6;
}
.form-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 1.2rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 3px solid var(--accent);
    padding-left: 12px;
}
.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.fg {
    margin-bottom: 1rem;
}
.fg label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: #1e293b;
}
.fg input, .fg select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    transition: 0.2s;
    background: #fff;
}
.fg input:focus, .fg select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(52,152,219,0.1);
}
.fg input[readonly] {
    background: #f8fafc;
    cursor: default;
}

.ql-toolbar {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-bottom: none;
    padding: 10px 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.ql-toolbar button {
    background: #f1f5f9;
    border: none;
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.15s;
    color: #334155;
}
.ql-toolbar button:hover {
    background: #e2e8f0;
}
.sep {
    width: 1px;
    background: #cbd5e1;
    margin: 0 4px;
}
.ql-area {
    border: 1px solid #e2e8f0;
    border-top: none;
    padding: 20px;
    min-height: 320px;
    background: white;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #1e293b;
}
.ql-area:focus {
    outline: none;
    border-color: var(--secondary);
}
.ql-area[contenteditable="true"]:empty:before {
    content: attr(data-placeholder);
    color: #94a3b8;
    font-style: normal;
}

.upload-zone {
    border: 2px dashed #cbd5e1;
    background: #fefce8;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
}
.upload-zone.drag {
    border-color: var(--secondary);
    background: #eef2ff;
}
.upload-progress {
    display: none;
    background: #e2e8f0;
    margin-top: 1rem;
    height: 6px;
    overflow: hidden;
}
.upload-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--accent);
    transition: width 0.3s;
}
.img-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 120px));
    gap: 12px;
    margin-top: 1.2rem;
}
.img-item {
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #fff;
}
.img-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}
.img-item .rm {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
}
.img-item .cv {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    cursor: pointer;
    backdrop-filter: blur(2px);
}
.img-item .cv.grey {
    background: rgba(0,0,0,0.4);
}
.tag-previews {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}
.tag-preview-item {
    background: #eef2ff;
    color: var(--primary);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.abtn { display:inline-flex; align-items:center; gap:5px; padding:5px 12px; border:none; border-radius:7px; font-size:.76rem; font-weight:700; cursor:pointer; transition:.15s; text-decoration:none; }
.abtn:hover { opacity:.85; }
.abtn-ok     { background:#d4edda; color:#155724; }
.abtn-warn   { background:#fff3cd; color:#856404; }
.abtn-danger { background:#fce4ec; color:#c62828; }
.abtn-info   { background:#d1ecf1; color:#0c5460; }
.abtn-primary{ background:var(--primary); color:#fff; }
.abtn-secondary{ background:var(--secondary); color:#fff; }

@media (max-width: 700px) {
    .form-section {
        padding: 1.2rem;
    }
    .grid2 {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    .pub-hero {
        font-size: 1.5rem;
    }
    .ql-toolbar button {
        width: 32px;
        height: 32px;
    }
    .img-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
}

.ct-hero { background:linear-gradient(135deg,#1a2a4a 0%,#2c6e9e 100%); padding:100px 0 28px; color:#fff; text-align:center; }
.ct-hero h1 { margin:0 0 6px; font-size:2rem; font-weight:900; }
.ct-hero p  { margin:0; opacity:.7; font-size:.95rem; }

.ct-layout { display:grid; grid-template-columns:1fr 380px; gap:28px; padding:32px 0 70px; align-items:start; }
@media(max-width:860px){ .ct-layout { grid-template-columns:1fr; } }

.ct-card { background:#fff; border-radius:14px; padding:28px 30px; box-shadow:0 2px 16px rgba(0,0,0,.07); }
.ct-card h2 { color:var(--primary); margin:0 0 22px; font-size:1.1rem; font-weight:800; display:flex; align-items:center; gap:8px; }
.cf-row { margin-bottom:14px; }
.cf-row label { display:block; font-size:.71rem; font-weight:700; color:#666; text-transform:uppercase; letter-spacing:.04em; margin-bottom:5px; }
.cf-row input, .cf-row select, .cf-row textarea { width:100%; padding:10px 13px; border:1.5px solid #e4e4e4; border-radius:8px; font-size:.9rem; box-sizing:border-box; font-family:inherit; color:#333; outline:none; transition:border-color .15s; }
.cf-row input:focus, .cf-row select:focus, .cf-row textarea:focus { border-color:var(--secondary); }
.cf-grid2 { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
@media(max-width:500px){ .cf-grid2 { grid-template-columns:1fr; } }
.cf-submit { width:100%; padding:13px; background:var(--primary); color:#fff; border:none; border-radius:9px; font-size:.95rem; font-weight:800; cursor:pointer; transition:.2s; display:flex; align-items:center; justify-content:center; gap:8px; margin-top:4px; }
.cf-submit:hover { opacity:.88; }
.cf-success { display:none; text-align:center; padding:32px 20px; }
.cf-success-icon { font-size:3rem; margin-bottom:12px; }

.ct-info-card { background:#fff; border-radius:14px; padding:22px 24px; box-shadow:0 2px 16px rgba(0,0,0,.07); margin-bottom:16px; }
.ct-info-card h3 { margin:0 0 14px; font-size:.92rem; font-weight:800; color:var(--primary); display:flex; align-items:center; gap:7px; border-bottom:1px solid #f0f0f0; padding-bottom:10px; }
.ci-item { display:flex; align-items:center; gap:14px; padding:11px 12px; border-radius:11px; background:#f8f9fb; margin-bottom:8px; transition:background .15s,box-shadow .15s; }
.ci-item:last-child { margin-bottom:0; }
.ci-item.ci-link { cursor:pointer; }
.ci-item.ci-link:hover { background:#eef2f8; box-shadow:0 2px 10px rgba(44,110,158,.1); }
.ci-icon { width:42px; height:42px; border-radius:11px; background:linear-gradient(135deg,var(--primary,#1a6b8a),var(--secondary,#2c9fc9)); display:flex; align-items:center; justify-content:center; color:#fff; font-size:.95rem; flex-shrink:0; box-shadow:0 3px 8px rgba(44,110,158,.25); }
.ci-label { font-size:.67rem; color:#9aa; font-weight:700; text-transform:uppercase; letter-spacing:.06em; margin-bottom:2px; }
.ci-val { font-size:.88rem; color:#2d3748; font-weight:600; line-height:1.45; }
.ci-val a { color:var(--primary); text-decoration:none; }
.ci-val a:hover { color:var(--secondary); }
.ci-val a:hover { text-decoration:underline; }

.fdd-panel { position:fixed; z-index:99999; background:#fff; border-radius:12px; box-shadow:0 8px 32px rgba(0,0,0,.16); border:1px solid #e0e0e0; overflow:hidden; min-width:240px; }
.fdd-search-wrap { padding:10px; border-bottom:1px solid #f0f0f0; }
.fdd-search-inp { width:100%; padding:8px 10px; border:1.5px solid #e4e4e4; border-radius:8px; font-size:.84rem; box-sizing:border-box; outline:none; font-family:inherit; color:#333; }
.fdd-search-inp:focus { border-color:var(--secondary); }
.fdd-list { max-height:260px; overflow-y:auto; padding:5px; scrollbar-width:thin; scrollbar-color:#e0e0e0 transparent; }
.fdd-item { display:flex; align-items:center; gap:8px; padding:8px 10px; border-radius:8px; cursor:pointer; font-size:.84rem; color:#333; transition:background .1s; user-select:none; }
.fdd-item:hover { background:#f5f5f5; }
.fdd-item.fdd-sve { color:#888; font-style:italic; }

.soc-grid { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-top:4px; }
.soc-btn { display:flex; align-items:center; gap:9px; padding:10px 14px; border-radius:10px; font-size:.84rem; font-weight:700; text-decoration:none; transition:.15s; border:none; }
.soc-btn:hover { transform:translateY(-2px); box-shadow:0 4px 12px rgba(0,0,0,.15); }
.soc-btn i { font-size:1.05rem; }
.soc-fb { background:#1877f2; color:#fff; }
.soc-ig { background:linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); color:#fff; }
.soc-wa { background:#25d366; color:#fff; }
.soc-vb { background:#7360f2; color:#fff; }
.soc-tt { background:#010101; color:#fff; }
.soc-btn span { display:flex; flex-direction:column; line-height:1.2; }
.soc-btn .soc-lbl  { font-size:.82rem; font-weight:800; }
.soc-btn .soc-sub  { font-size:.68rem; opacity:.8; font-weight:500; }

.ct-map { border-radius:10px; overflow:hidden; }

.ct-hours-card h3 { justify-content:space-between; }
.wh-badge { font-size:.68rem; font-weight:700; padding:3px 10px; border-radius:20px; white-space:nowrap; }
.wh-badge-open   { background:#edfaf1; color:#1e8449; border:1px solid #a9dfbf; }
.wh-badge-closed { background:#fdecea; color:#c0392b; border:1px solid #f5b7b1; }
.wh-badge-idle   { background:#f4f4f4; color:#888;    border:1px solid #ddd; }
.wh-schedule { display:flex; flex-direction:column; gap:3px; margin-top:4px; }
.wh-row { display:flex; justify-content:space-between; align-items:center; padding:9px 12px; border-radius:9px; background:#f8f9fb; }
.wh-row-today { background:linear-gradient(135deg,var(--primary,#2c6e9e),var(--secondary,#4a9cc8)); color:#fff; font-weight:700; }
.wh-day  { font-size:.85rem; }
.wh-time { font-size:.85rem; display:flex; align-items:center; gap:4px; }
.wh-sep  { opacity:.5; margin:0 2px; }
.wh-closed-lbl   { opacity:.45; font-size:.8rem; }
.wh-holiday-inline { font-size:.78rem; }
.wh-row-today .wh-closed-lbl,
.wh-row-today .wh-holiday-inline { opacity:.85; }
.wh-hol-note { margin-top:10px; padding:9px 12px; background:#fdecea; border-radius:9px; font-size:.8rem; color:#c0392b; border-left:3px solid #e74c3c; }

    .co-label { display:block; font-size:.82rem; font-weight:700; color:var(--primary); margin-bottom:7px; }
    .co-btn-next { display:inline-flex;align-items:center;gap:8px;padding:11px 24px;background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;border:none;border-radius:50px;font-size:.9rem;font-weight:700;cursor:pointer;transition:.2s; }
    .co-btn-next:hover { transform:translateY(-2px);box-shadow:0 6px 18px rgba(102,126,234,.35); }
    .co-btn-back { display:inline-flex;align-items:center;gap:8px;padding:11px 20px;background:#f1f4f8;color:var(--primary);border:none;border-radius:50px;font-size:.9rem;font-weight:600;cursor:pointer;transition:.2s; }
    .co-btn-back:hover { background:#e8ecf2; }
    .co-btn-submit { display:inline-flex;align-items:center;gap:8px;padding:13px 28px;background:linear-gradient(135deg,#e74c3c,#c0392b);color:#fff;border:none;border-radius:50px;font-size:.95rem;font-weight:700;cursor:pointer;transition:.2s; }
    .co-btn-submit:hover { transform:translateY(-2px);box-shadow:0 6px 18px rgba(231,76,60,.35); }
    label:has(input[type=radio]:checked) { border-color:var(--secondary)!important; background:rgba(52,152,219,.08); color:var(--secondary); }
    .site-footer { background:#1a2a3a; color:#c8d4e0; padding:60px 0 0; font-size:.9rem; }
    .site-footer .container { max-width:1200px; margin:0 auto; padding:0 20px; }
    .footer-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:36px; padding-bottom:40px; }
    .footer-col-brand .footer-logo { font-size:1.3rem; font-weight:800; color:#fff; margin-bottom:12px; display:flex; align-items:center; gap:8px; }
    .footer-col-brand .footer-logo img { max-height:40px; }
    .footer-col-brand p { color:#8da5ba; line-height:1.7; font-size:.86rem; margin-bottom:18px; }
    .footer-social { display:flex; gap:10px; }
    .footer-social a { width:38px; height:38px; border-radius:9px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); color:#c8d4e0; display:flex; align-items:center; justify-content:center; text-decoration:none; transition:.15s; font-size:.9rem; }
    .footer-social a:hover { background:var(--primary,#2c6e9e); color:#fff; border-color:transparent; }
    .footer-col h4 { color:#fff; font-size:.88rem; font-weight:700; text-transform:uppercase; letter-spacing:.07em; margin-bottom:16px; padding-bottom:8px; border-bottom:1px solid rgba(255,255,255,.08); }
    .footer-links { list-style:none; padding:0; margin:0; }
    .footer-links li { margin-bottom:9px; }
    .footer-links a { color:#8da5ba; text-decoration:none; display:flex; align-items:center; gap:7px; font-size:.86rem; transition:.15s; }
    .footer-links a:hover { color:#fff; padding-left:4px; }
    .footer-links a i { font-size:.65rem; opacity:.6; }
    .footer-contact-list { list-style:none; padding:0; margin:0; }
    .footer-contact-list li { display:flex; align-items:flex-start; gap:10px; margin-bottom:12px; color:#8da5ba; font-size:.86rem; line-height:1.5; }
    .footer-contact-list i { color:var(--secondary,#3498db); font-size:.9rem; margin-top:2px; flex-shrink:0; }
    .footer-contact-list a { color:#8da5ba; text-decoration:none; }
    .footer-contact-list a:hover { color:#fff; }
    .footer-bottom { border-top:1px solid rgba(255,255,255,.06); padding:18px 0; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px; }
    .footer-bottom p { margin:0; color:#556a7a; font-size:.8rem; }
    .footer-bottom-links { display:flex; gap:16px; }
    .footer-bottom-links a { color:#556a7a; text-decoration:none; font-size:.8rem; transition:.15s; }
    .footer-bottom-links a:hover { color:#8da5ba; }
    @media(max-width:600px) { .footer-grid { grid-template-columns:1fr 1fr; } .footer-col-brand { grid-column:1/-1; } }
    

.rt-notify {
    display:flex;align-items:flex-start;gap:12px;padding:14px 16px;
    background:#fff;border-radius:12px;border-left:4px solid #ccc;
    box-shadow:0 8px 24px rgba(0,0,0,.12);pointer-events:all;
    animation:rtSlideIn .3s cubic-bezier(.175,.885,.32,1.275);
    position:relative;min-width:260px;
}
.rt-notify.removing{animation:rtSlideOut .25s ease forwards}
@keyframes rtSlideIn{from{opacity:0;transform:translateX(40px)}to{opacity:1;transform:none}}
@keyframes rtSlideOut{to{opacity:0;transform:translateX(40px)}}
.rt-notify-icon{font-size:1.1rem;flex-shrink:0;margin-top:1px}
.rt-notify-body{flex:1}
.rt-notify-title{font-weight:700;font-size:.88rem;color:#222;margin-bottom:2px}
.rt-notify-msg{font-size:.81rem;color:#666;line-height:1.4}
.rt-notify-close{background:none;border:none;cursor:pointer;color:#bbb;font-size:1rem;padding:0;line-height:1;margin-left:4px;flex-shrink:0;transition:.15s}
.rt-notify-close:hover{color:#888}
.rt-notify-bar{position:absolute;bottom:0;left:4px;right:0;height:3px;border-radius:0 0 8px 8px;transform-origin:left;animation:rtBar linear forwards}
@keyframes rtBar{from{transform:scaleX(1)}to{transform:scaleX(0)}}
.rt-notify.success{border-left-color:#2ecc71}.rt-notify.success .rt-notify-icon{color:#2ecc71}
.rt-notify.error  {border-left-color:#e74c3c}.rt-notify.error   .rt-notify-icon{color:#e74c3c}
.rt-notify.info   {border-left-color:#3498db}.rt-notify.info    .rt-notify-icon{color:#3498db}
.rt-notify.warning{border-left-color:#f39c12}.rt-notify.warning .rt-notify-icon{color:#f39c12}
.rt-notify.success .rt-notify-bar{background:#2ecc71}
.rt-notify.error   .rt-notify-bar{background:#e74c3c}
.rt-notify.info    .rt-notify-bar{background:#3498db}
.rt-notify.warning .rt-notify-bar{background:#f39c12}
.recaptcha-box {
  display: flex;
  justify-content: center;
  padding: 15px 0;
  background: rgba(0,0,0,0.02);
  border-radius: 8px;
}

.rt-modal-overlay {
    display:none;position:fixed;inset:0;z-index:3500;
    background:rgba(15,20,30,.55);backdrop-filter:blur(3px);
    overflow-y:auto;padding:40px 16px;
}
.rt-modal-overlay.visible{display:block}
.rt-modal-box {
    background:#fff;border-radius:16px;width:100%;
    margin:0 auto;position:relative;
    box-shadow:0 24px 60px rgba(0,0,0,.2);overflow:hidden;
}
.rt-modal-header {
    padding:22px 24px 18px;border-bottom:1px solid #f0f0f0;
    display:flex;align-items:flex-start;justify-content:space-between;gap:12px;
}
.rt-modal-header h2{margin:0;font-size:1.15rem;color:var(--primary);font-weight:700}
.rt-modal-header p{margin:4px 0 0;font-size:.83rem;color:#888}
.rt-modal-close {
    width:32px;height:32px;border-radius:8px;border:1px solid #e8e8e8;
    background:#f8f8f8;cursor:pointer;display:flex;align-items:center;justify-content:center;
    color:#666;font-size:.9rem;flex-shrink:0;transition:.15s;
}
.rt-modal-close:hover{background:#efefef;color:#333}
.rt-modal-body{padding:24px}
.rt-modal-footer{padding:16px 24px;border-top:1px solid #f0f0f0;display:flex;gap:10px;justify-content:flex-end}
.rt-btn{display:inline-flex;align-items:center;gap:6px;padding:10px 20px;border-radius:9px;font-size:.88rem;font-weight:700;border:none;cursor:pointer;transition:.15s;text-decoration:none}
.rt-btn-primary{background:var(--primary);color:#fff}.rt-btn-primary:hover{opacity:.88}
.rt-btn-accent{background:var(--accent);color:#fff}.rt-btn-accent:hover{opacity:.88}
.rt-btn-ghost{background:#f5f5f5;color:#555;border:1px solid #e4e4e4}.rt-btn-ghost:hover{background:#ebebeb}
.rt-btn-danger{background:#e74c3c;color:#fff}.rt-btn-danger:hover{opacity:.88}
.rt-form-row{display:grid;gap:14px;margin-bottom:14px}
.rt-form-row.cols2{grid-template-columns:1fr 1fr}
.rt-form-row.cols3{grid-template-columns:1fr 1fr 1fr}
.rt-field label{display:block;font-size:.75rem;font-weight:700;color:#666;text-transform:uppercase;letter-spacing:.04em;margin-bottom:5px}
.rt-field input,.rt-field select,.rt-field textarea{
    width:100%;padding:10px 13px;border:1.5px solid #e4e4e4;border-radius:9px;
    font-size:.9rem;font-family:inherit;box-sizing:border-box;transition:.15s;background:#fff
}
.rt-field input:focus,.rt-field select:focus,.rt-field textarea:focus{outline:none;border-color:var(--primary)}

.rt-stepper{display:flex;align-items:flex-start;padding:18px 20px 0;border-bottom:1px solid #f0f0f0;background:#fafafa}
.rt-step-tab{flex:1;display:flex;flex-direction:column;align-items:center;gap:6px;padding-bottom:14px;cursor:default;user-select:none;position:relative}
.rt-step-tab::after{content:'';position:absolute;top:16px;left:50%;width:100%;height:2px;background:#e8e8e8;z-index:0;transition:.3s}
.rt-step-tab:last-child::after{display:none}
.rt-step-num{width:34px;height:34px;border-radius:50%;border:2px solid #e0e0e0;background:#fff;display:flex;align-items:center;justify-content:center;font-size:.78rem;font-weight:800;color:#ccc;position:relative;z-index:1;transition:.25s;flex-shrink:0}
.rt-step-label{font-size:.64rem;font-weight:600;color:#bbb;transition:.15s;text-align:center;white-space:nowrap}
.rt-step-tab.active .rt-step-num{border-color:var(--primary);background:var(--primary);color:#fff;box-shadow:0 4px 14px rgba(44,110,158,.35)}
.rt-step-tab.active .rt-step-label{color:var(--primary);font-weight:700}
.rt-step-tab.done .rt-step-num{border-color:#2ecc71;background:#2ecc71;color:#fff}
.rt-step-tab.done .rt-step-label{color:#2ecc71}
.rt-step-tab.done::after{background:#2ecc71}
.rt-step-tab.active::after{background:linear-gradient(to right,#2ecc71 0%,#e0e0e0 100%)}
.rt-step-content{display:none;padding:20px 24px;overflow-y:auto;max-height:500px}.rt-step-content.active{display:block}

.bm-date-card{display:flex;align-items:center;justify-content:space-between;
    padding:12px 14px;border:1.5px solid #e4e4e4;border-radius:10px;
    cursor:pointer;margin-bottom:8px;transition:.15s;background:#fff}
.bm-date-card:hover{border-color:var(--primary);background:#f7fbff}
.bm-date-card.selected{border-color:var(--primary);background:#f0f6ff}
.bm-date-card-dates{font-weight:700;color:#222;font-size:.92rem}
.bm-date-card-dates i{color:var(--secondary);margin-right:5px;font-size:.8rem}
.bm-date-card-meta{font-size:.76rem;color:#aaa;margin-top:2px}
.bm-date-card-price{font-weight:800;color:var(--accent);font-size:1rem;white-space:nowrap;margin-left:14px}

.bm-hotel-card{display:flex;gap:12px;padding:12px;border:1.5px solid #e4e4e4;border-radius:10px;
    cursor:pointer;margin-bottom:8px;transition:.15s;background:#fff;align-items:center}
.bm-hotel-card:hover,.bm-hotel-card.selected{border-color:var(--primary);background:#f7fbff}
.bm-hotel-img{width:56px;height:56px;border-radius:8px;object-fit:cover;background:#eee;flex-shrink:0}
.bm-hotel-info{flex:1}
.bm-hotel-name{font-weight:700;font-size:.9rem;color:#222}
.bm-hotel-stars{color:#f39c12;font-size:.72rem;letter-spacing:.1em}
.bm-hotel-loc{font-size:.76rem;color:#999;margin-top:1px}
.bm-hotel-price{font-size:.82rem;font-weight:700;color:var(--accent);white-space:nowrap;text-align:right}
.bm-hotel-price .base{font-size:.7rem;color:#aaa;font-weight:400}
.bm-hotel-radio{width:18px;height:18px;accent-color:var(--primary);flex-shrink:0}

.bm-extra-item{display:flex;align-items:flex-start;gap:12px;padding:12px 14px;
    border:1.5px solid #e4e4e4;border-radius:10px;margin-bottom:8px;transition:.15s;background:#fff}
.bm-extra-item.checked{border-color:var(--secondary);background:#f7fbff}
.bm-extra-check{width:18px;height:18px;accent-color:var(--secondary);flex-shrink:0;margin-top:2px}
.bm-extra-body{flex:1}
.bm-extra-name{font-weight:700;font-size:.88rem;color:#222}
.bm-extra-desc{font-size:.76rem;color:#888;margin-top:2px;line-height:1.4}
.bm-extra-price{font-size:.82rem;font-weight:700;color:var(--accent);white-space:nowrap;text-align:right}
.bm-extra-pay-opts{display:none;margin-top:8px;font-size:.78rem;gap:10px}
.bm-extra-item.checked .bm-extra-pay-opts{display:flex}

.bm-price-row{display:flex;justify-content:space-between;font-size:.88rem;padding:5px 0;color:#555}
.bm-price-row.total{font-weight:800;font-size:1.05rem;color:var(--primary);border-top:1.5px solid #e4e4e4;margin-top:8px;padding-top:12px}
.bm-price-row.extra-on-spot{color:#aaa;font-size:.78rem}

.rt-count-ctrl{display:flex;align-items:center;gap:10px}
.rt-count-btn{width:34px;height:34px;border-radius:8px;border:1.5px solid #e4e4e4;
    background:#fff;color:var(--primary);font-size:1.1rem;cursor:pointer;
    display:flex;align-items:center;justify-content:center;font-weight:700;transition:.15s}
.rt-count-btn:hover{border-color:var(--primary);background:#f0f6ff}
.rt-count-val{font-size:1.2rem;font-weight:800;min-width:28px;text-align:center;color:#222}

  #bookingForm input:focus, #bookingForm select:focus, #bookingForm textarea:focus {
    outline: none; border-color: var(--secondary) !important;
    box-shadow: 0 0 0 3px rgba(52,152,219,.15);
  }
  #gdpr-analytics-slider, #gdpr-marketing-slider { cursor: pointer; }
  .sm-split{display:flex;overflow:hidden}
  .sm-left{width:260px;flex-shrink:0;background:linear-gradient(160deg,var(--primary,#1a6b8a) 0%,var(--secondary,#3498db) 100%);padding:38px 22px;display:flex;flex-direction:column;align-items:center;justify-content:center;background-size:cover;background-position:center;position:relative}
  .sm-left-img::before{content:'';position:absolute;inset:0;background:linear-gradient(160deg,rgba(15,45,75,.72) 0%,rgba(26,107,138,.80) 100%);z-index:0}
  .sm-left>*{position:relative;z-index:1}
  .sm-left-icon{width:70px;height:70px;border-radius:50%;background:rgba(255,255,255,.15);display:flex;align-items:center;justify-content:center;font-size:1.8rem;color:#fff;margin-bottom:18px;flex-shrink:0}
  .sm-left-brand{color:#fff;font-size:1.1rem;font-weight:800;margin-bottom:26px;text-align:center}
  .sm-perk{display:flex;align-items:flex-start;gap:9px;width:100%;margin-bottom:12px}
  .sm-perk i{width:19px;height:19px;border-radius:50%;background:rgba(255,255,255,.2);display:flex;align-items:center;justify-content:center;font-size:.58rem;color:#fff;flex-shrink:0;margin-top:1px}
  .sm-perk span{font-size:.79rem;color:rgba(255,255,255,.88);line-height:1.45}
  .sm-right{flex:1;min-width:0;display:flex;flex-direction:column}
  .sm-right .rt-modal-header{border-radius:0}
  .sm-right .rt-modal-body{flex:1}
  @media(max-width:640px){.sm-split{flex-direction:column}.sm-left{width:auto;padding:22px 20px}.sm-perk{display:none}.sm-left-brand{margin-bottom:0}}
  .co-modal-wrap{border-radius:24px;overflow:hidden;background:#fff;box-shadow:0 30px 80px rgba(0,0,0,.3);width:92%;max-width:680px;margin:30px auto}
  .co-modal-head{background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;padding:26px 30px 20px;position:relative}
  .co-modal-badge{font-size:.73rem;opacity:.8;text-transform:uppercase;letter-spacing:.08em;margin-bottom:4px}
  .co-modal-title{margin:0;font-size:1.4rem;font-family:'Playfair Display',serif;font-weight:700}
  .co-modal-sub{margin:8px 0 0;font-size:.85rem;opacity:.82}
  #co-step-tabs.rt-stepper{background:#fafafa}
  #co-step-tabs .rt-step-tab.active .rt-step-num{border-color:#667eea;background:#667eea;box-shadow:0 4px 14px rgba(102,126,234,.35)}
  #co-step-tabs .rt-step-tab.active .rt-step-label{color:#667eea}
  #co-step-tabs .rt-step-tab.active::after{background:linear-gradient(to right,#2ecc71 0%,#e0e0e0 100%)}
  .co-body{padding:24px 30px}
  .co-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
  .co-grid-full{grid-column:1/-1}
  .co-field label{font-size:.74rem;font-weight:700;color:var(--primary);text-transform:uppercase;letter-spacing:.04em;display:block;margin-bottom:5px}
  .co-input{width:100%;padding:11px 14px;border:2px solid #e9ecef;border-radius:10px;font-size:.92rem;box-sizing:border-box;transition:.2s;font-family:inherit}
  .co-input:focus{outline:none;border-color:#667eea;box-shadow:0 0 0 3px rgba(102,126,234,.12)}
  .co-type-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:8px}
  .co-type-label{display:flex;flex-direction:column;align-items:center;padding:10px 6px;border:2px solid #e9ecef;border-radius:10px;cursor:pointer;font-size:.76rem;font-weight:600;transition:.15s;text-align:center;gap:3px}
  .co-type-label:has(input:checked){border-color:#667eea;background:rgba(102,126,234,.08);color:#667eea}
  .co-ctr-wrap{display:flex;align-items:center;gap:10px}
  .co-ctr-btn{width:34px;height:34px;border-radius:50%;border:2px solid var(--secondary);background:#fff;color:var(--secondary);font-size:1.15rem;font-weight:700;cursor:pointer;line-height:1;transition:.15s;display:flex;align-items:center;justify-content:center}
  .co-ctr-btn:hover{background:var(--secondary);color:#fff}
  .co-ctr-val{font-size:1.2rem;font-weight:700;min-width:28px;text-align:center;color:#222}
  .co-summary-box{background:#f8f9fa;border-radius:12px;padding:14px 18px;font-size:.84rem;line-height:1.7;color:#555;border:1px solid #e9ecef;margin-top:16px}
  .co-actions{display:flex;justify-content:space-between;align-items:center;margin-top:20px;gap:10px}
  @media(max-width:540px){.co-body{padding:18px}.co-grid{grid-template-columns:1fr}.co-type-grid{grid-template-columns:repeat(2,1fr)}.co-modal-head{padding:22px 18px}}
  input:checked + span#gdpr-analytics-slider,
  input:checked + span#gdpr-marketing-slider { background: #3498db !important; }
  input:checked + span#gdpr-analytics-slider::after,
  input:checked + span#gdpr-marketing-slider::after { left: calc(100% - 22px) !important; }
  #gdpr-analytics-slider::after, #gdpr-marketing-slider::after {
    content: ''; position: absolute; width: 18px; height: 18px;
    background: #fff; border-radius: 50%; top: 3px; left: 3px; transition: .3s;
  }

.idx-eyebrow {
    display: inline-block; font-size: .68rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .1em; color: var(--primary);
    background: rgba(26,107,138,.09); padding: 4px 12px; border-radius: 20px;
    margin-bottom: 12px;
}
.idx-section-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 20px; margin-bottom: 44px; flex-wrap: wrap;
}
.idx-section-head h2 { font-size: 2rem; margin: 8px 0 4px; line-height: 1.2; }
.idx-section-head h2 em { font-style: normal; color: var(--primary, #1a6b8a); }
.idx-section-head p { color: #999; margin: 0; font-size: .9rem; }
.idx-see-all { white-space: nowrap; flex-shrink: 0; display: inline-flex; align-items: center; gap: 7px; }

.idx-reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity .55s ease, transform .55s ease;
}
.idx-reveal.revealed { opacity: 1; transform: translateY(0); }

.idx-dests { padding: 88px 0; background: #fff; }

.idx-gallery { padding: 88px 0; background: #f7f9fb; }
.blog-img-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 32px;
}
@media(max-width:1024px) { .blog-img-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:680px)  { .blog-img-grid { grid-template-columns: repeat(2,1fr); } }
.blog-img-card {
    position: relative; border-radius: 14px; overflow: hidden;
    aspect-ratio: 4/3; background: #e8eaf0; display: block; text-decoration: none;
}
.blog-img-card img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .4s ease;
}
.blog-img-card:hover img { transform: scale(1.06); }
.blog-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,20,40,.75) 0%, transparent 55%);
    opacity: 0; transition: opacity .25s;
    display: flex; flex-direction: column; justify-content: flex-end; padding: 14px;
}
.blog-img-card:hover .blog-img-overlay { opacity: 1; }
.blog-img-cat {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
    background: rgba(255,255,255,.18); color: #fff; border-radius: 10px;
    padding: 2px 8px; margin-bottom: 6px; width: fit-content;
}
.blog-img-title {
    font-size: .8rem; font-weight: 700; color: #fff; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    margin-bottom: 8px;
}
.blog-img-author {
    display: flex; align-items: center; gap: 7px;
}
.blog-img-av {
    width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
    background: rgba(255,255,255,.25); border: 1.5px solid rgba(255,255,255,.4);
    display: flex; align-items: center; justify-content: center;
    font-size: .65rem; font-weight: 800; color: #fff;
}
.blog-img-author-name { font-size: .72rem; color: rgba(255,255,255,.85); font-weight: 600; }

.idx-svc { padding: 88px 0; background: #fff; }
.idx-svc-wrap { display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: start; }
.idx-svc-nav { display: flex; flex-direction: column; gap: 6px; }
.idx-svc-btn {
    display: flex; align-items: center; gap: 12px; padding: 14px 18px;
    border-radius: 12px; border: none; background: transparent; text-align: left;
    cursor: pointer; font-family: inherit; font-size: .86rem; font-weight: 600;
    color: #777; transition: all .18s; width: 100%;
}
.idx-svc-btn:hover { background: #f5f7fa; color: var(--primary, #1a6b8a); }
.idx-svc-btn.active {
    background: var(--primary, #1a6b8a); color: #fff;
    box-shadow: 0 6px 20px rgba(26,107,138,.25);
}
.idx-svc-btn i { font-size: 1rem; width: 20px; text-align: center; flex-shrink: 0; }
.idx-svc-panel {
    background: #f7f9fb; border-radius: 20px; padding: 40px;
    min-height: 280px;
}
.idx-svc-pane { display: none; gap: 36px; align-items: center; }
.idx-svc-pane.active { display: flex; animation: svcFadeIn .3s ease; }
@keyframes svcFadeIn { from { opacity:0; transform:translateX(10px); } to { opacity:1; transform:translateX(0); } }
.idx-svc-pane .service-info { flex: 1; }
.idx-svc-pane .service-info h3 { font-size: 1.35rem; margin: 0 0 14px; color: #1a1a1a; }
.idx-svc-pane .service-desc { font-size: .88rem; color: #666; line-height: 1.7; }
.idx-svc-pane .service-image {
    width: 240px; flex-shrink: 0; align-self: stretch; border-radius: 14px; overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
.idx-svc-pane .service-image img {
    width: 100%; height: 100%; min-height: 180px; object-fit: cover; display: block;
}
@media (max-width: 860px) {
    .idx-svc-wrap { grid-template-columns: 1fr; }
    .idx-svc-nav { flex-direction: row; flex-wrap: wrap; gap: 6px; }
    .idx-svc-btn { flex: 1 1 calc(50% - 3px); min-width: 0; justify-content: center; white-space: nowrap; }
    .idx-svc-pane.active { flex-direction: column; }
    .idx-svc-pane .service-image { width: 100%; height: 200px; }
    .idx-svc-pane .service-image img { min-height: 0; }
}

.idx-testi {
    padding: 88px 0;
    background: linear-gradient(135deg, var(--primary, #1a6b8a) 0%, #0c3a52 100%);
    overflow: hidden;
}
.idx-testi .idx-eyebrow { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }
.idx-testi .idx-section-head h2 { color: #fff; }
.idx-testi .idx-section-head p { color: rgba(255,255,255,.55); }
.idx-testi-outer {
    overflow: hidden; margin-top: 40px; cursor: grab; user-select: none;
}
.idx-testi-outer:active { cursor: grabbing; }
.idx-testi-track { display: flex; gap: 20px; padding: 6px 20px; width: max-content; will-change: transform; }
.testi-progress-wrap { display: flex; justify-content: center; margin-top: 22px; }
.testi-progress-track { height: 3px; width: 120px; background: rgba(255,255,255,.18); border-radius: 2px; overflow: hidden; }
.testi-progress-fill { height: 100%; width: 0%; background: rgba(255,255,255,.7); border-radius: 2px; transition: width .08s linear; }
.idx-testi-card {
    width: 320px; flex-shrink: 0; cursor: pointer;
    background: rgba(255,255,255,.09); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15); border-radius: 18px; padding: 26px;
    transition: background .2s;
}
.idx-testi-card:hover { background: rgba(255,255,255,.15); }
.idx-testi-ql { font-size: 3rem; line-height: .7; color: rgba(255,255,255,.2); font-family: Georgia, serif; margin-bottom: 10px; }
.idx-testi-text { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.88); }
.idx-testi-stars { color: #ffd700; font-size: .78rem; letter-spacing: 2px; margin: 14px 0 12px; }
.idx-testi-author { display: flex; align-items: center; gap: 10px; }
.idx-testi-av {
    width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
    background: rgba(255,255,255,.22); display: flex; align-items: center;
    justify-content: center; font-weight: 800; font-size: .9rem; color: #fff;
}
.idx-testi-name { font-weight: 700; font-size: .82rem; color: #fff; }
.idx-testi-dest { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 1px; }
.idx-testi-cta { text-align: center; margin-top: 36px; }
.idx-testi-cta a {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 11px 24px; border-radius: 30px; font-size: .82rem; font-weight: 700;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
    color: #fff; text-decoration: none; transition: background .18s;
}
.idx-testi-cta a:hover { background: rgba(255,255,255,.22); }
.idx-testi-more { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 6px; display: inline-block; }
.testi-modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
    align-items: center; justify-content: center; padding: 20px;
}
.testi-modal-overlay.open { display: flex; }
.testi-modal {
    background: #fff; border-radius: 20px; max-width: 520px; width: 100%;
    padding: 36px 32px; position: relative; box-shadow: 0 24px 60px rgba(0,0,0,.2);
    max-height: 90vh; overflow-y: auto;
}
.testi-modal-close {
    position: absolute; top: 16px; right: 18px; background: none; border: none;
    font-size: 1.3rem; cursor: pointer; color: #aaa; line-height: 1;
}
.testi-modal-close:hover { color: #333; }
.testi-modal-ql { font-size: 3.5rem; line-height: .6; color: #e8e8e8; font-family: Georgia, serif; }
.testi-modal-text { font-size: .95rem; line-height: 1.8; color: #444; font-style: italic; margin: 14px 0 20px; }
.testi-modal-stars { color: #f39c12; font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi-modal-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid #f0f0f0; padding-top: 16px; }
.testi-modal-av {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1rem; color: #fff;
}
.testi-modal-name { font-weight: 700; font-size: .9rem; color: #222; }
.testi-modal-dest { font-size: .78rem; color: #aaa; margin-top: 2px; }

.idx-feat { padding: 88px 0; background: #f7f9fb; }
.idx-feat-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 900px) { .idx-feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .idx-feat-grid { grid-template-columns: 1fr; } }
.idx-feat-card {
    background: #fff; border-radius: 18px; padding: 30px 26px;
    box-shadow: 0 2px 16px rgba(0,0,0,.05); border: 1px solid #efefef;
    transition: box-shadow .22s, transform .22s;
}
.idx-feat-card.revealed:hover { box-shadow: 0 10px 36px rgba(0,0,0,.1); transform: translateY(-3px); }
.idx-feat-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; margin-bottom: 18px;
}
.idx-feat-card h3 { font-size: .96rem; font-weight: 800; margin: 0 0 8px; color: #1a1a1a; }
.idx-feat-card p  { font-size: .83rem; color: #888; line-height: 1.65; margin: 0; }

.idx-newsletter {
    padding: 88px 0; position: relative; overflow: hidden;
    background: linear-gradient(135deg, #0d2137 0%, #1a4a6e 50%, #0d2137 100%);
}
.idx-nl-dots {
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 28px 28px;
}
.idx-nl-glow {
    position: absolute; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(26,107,138,.35), transparent 70%);
    top: -150px; right: -100px; pointer-events: none;
}
.idx-nl-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    align-items: center; position: relative; z-index: 1;
}
@media (max-width: 768px) { .idx-nl-inner { grid-template-columns: 1fr; gap: 36px; } }
.idx-nl-text .idx-eyebrow { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.idx-nl-text h2 { color: #fff; font-size: 1.9rem; margin: 10px 0 14px; line-height: 1.2; }
.idx-nl-text > p { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.65; margin: 0 0 26px; }
.idx-nl-perks { display: flex; flex-direction: column; gap: 10px; }
.idx-nl-perk { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: rgba(255,255,255,.65); }
.idx-nl-perk i { color: #4ade80; font-size: .78rem; flex-shrink: 0; }
.idx-nl-box {
    background: rgba(255,255,255,.07); backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.13); border-radius: 22px; padding: 38px;
}
.idx-nl-box h3 { color: #fff; font-size: 1.1rem; margin: 0 0 6px; }
.idx-nl-box > p { color: rgba(255,255,255,.45); font-size: .78rem; margin: 0 0 24px; }
.idx-nl-box input[type=email] {
    width: 100%; box-sizing: border-box; padding: 14px 18px;
    border: 1.5px solid rgba(255,255,255,.18); border-radius: 12px;
    background: rgba(255,255,255,.08); color: #fff;
    font-size: .88rem; font-family: inherit; margin-bottom: 12px;
    transition: border-color .15s;
}
.idx-nl-box input::placeholder { color: rgba(255,255,255,.38); }
.idx-nl-box input:focus { outline: none; border-color: rgba(255,255,255,.45); }
.idx-nl-box button {
    width: 100%; padding: 14px; border: none; border-radius: 12px;
    background: var(--accent, #f39c12); color: #fff; font-weight: 800;
    font-size: .9rem; cursor: pointer; font-family: inherit;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: filter .15s, transform .15s;
}
.idx-nl-box button:hover { filter: brightness(1.1); transform: translateY(-1px); }
.idx-nl-note { color: rgba(255,255,255,.3); font-size: .72rem; text-align: center; margin-top: 14px; }

.blog-img-card { cursor: pointer; }
.blog-light-overlay {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,.85); backdrop-filter: blur(6px);
    align-items: center; justify-content: center; padding: 20px;
}
.blog-light-overlay.open { display: flex; }
.blog-light-close {
    position: fixed; top: 18px; right: 22px; background: rgba(255,255,255,.12);
    border: none; color: #fff; font-size: 1.6rem; width: 42px; height: 42px;
    border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .15s; z-index: 1;
}
.blog-light-close:hover { background: rgba(255,255,255,.25); }
.blog-light-box {
    display: flex; gap: 0; border-radius: 18px; overflow: hidden;
    max-width: 860px; width: 100%; max-height: 90vh;
    box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.blog-light-box img {
    width: 60%; object-fit: cover; display: block; flex-shrink: 0;
}
.blog-light-info {
    background: #fff; padding: 32px 28px; display: flex; flex-direction: column;
    justify-content: center; gap: 12px; flex: 1;
}
.blog-light-cat {
    font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
    color: var(--secondary); display: block;
}
.blog-light-title { margin: 0; font-size: 1.15rem; font-weight: 800; color: #111; line-height: 1.35; }
.blog-light-author { font-size: .82rem; color: #888; }
.blog-light-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 11px 20px; background: var(--primary); color: #fff;
    border-radius: 10px; font-weight: 700; font-size: .85rem; text-decoration: none;
    transition: opacity .15s; margin-top: 4px; width: fit-content;
}
.blog-light-btn:hover { opacity: .88; color: #fff; }
@media(max-width:620px) {
    .blog-light-box { flex-direction: column; max-height: 92vh; overflow-y: auto; }
    .blog-light-box img { width: 100%; height: 220px; }
}

.put-hero { background:linear-gradient(135deg,#1a2a4a 0%,#2c6e9e 100%); padding:110px 0 0; color:#fff; }
.put-hero-inner { display:flex; align-items:flex-end; justify-content:space-between; flex-wrap:wrap; gap:20px; padding-bottom:24px; }
.put-hero-tag { font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; opacity:.7; margin-bottom:10px; }
.put-hero-title { margin:0; font-size:2.2rem; font-weight:800; }
.put-hero-sub { margin:8px 0 0; opacity:.75; font-size:1rem; }
.put-hero-stats { display:flex; align-items:center; gap:0; background:rgba(255,255,255,.08); border-radius:12px; padding:14px 20px; backdrop-filter:blur(4px); border:1px solid rgba(255,255,255,.12); flex-shrink:0; }
.put-stat { text-align:center; padding:0 16px; }
.put-stat-val { display:block; font-size:1.2rem; font-weight:800; }
.put-stat-lbl { display:block; font-size:.68rem; opacity:.6; text-transform:uppercase; letter-spacing:.06em; margin-top:2px; }
.put-stat-sep { width:1px; height:36px; background:rgba(255,255,255,.2); }
@media(max-width:700px) { .put-hero-inner{flex-direction:column;align-items:flex-start;} .put-hero-stats{width:100%;justify-content:space-around;} }

.put-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(290px,1fr)); gap:20px; margin-bottom:30px; }

.put-loader { text-align:center; padding:30px; display:none; }
.put-loader.active { display:block; }
.put-loader-spinner { width:36px; height:36px; border:3px solid #e4e4e4; border-top-color:var(--secondary); border-radius:50%; animation:spin .7s linear infinite; margin:0 auto 10px; }
@keyframes spin { to { transform:rotate(360deg); } }
.put-end-msg { text-align:center; padding:20px; color:#bbb; font-size:.85rem; display:none; }

.search-page { background: #f7f8fa; min-height: 80vh; padding-bottom: 60px; }

.search-hero {
    background: var(--primary);
    padding: 100px 0 28px;
    color: #fff;
}
.search-hero h1 { margin: 0 0 18px; font-size: 1.6rem; }
.search-bar-row {
    display: flex; gap: 8px; flex-wrap: wrap; align-items: stretch;
    background: #fff; border-radius: 12px; padding: 8px; box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.sb-field {
    flex: 1; min-width: 130px;
    display: flex; flex-direction: column; justify-content: center;
    padding: 6px 12px; border-right: 1px solid #f0f0f0; position: relative;
}
.sb-field:last-of-type { border-right: none; }
.sb-field label { font-size: .68rem; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; display: block; }
.sb-field input, .sb-field select {
    border: none; outline: none; font-size: .92rem; font-weight: 600;
    color: #222; background: transparent; width: 100%; padding: 0;
    font-family: inherit;
}
.sb-field input::placeholder { color: #bbb; font-weight: 400; }
.sb-submit {
    padding: 12px 22px; background: var(--primary); color: #fff;
    border: none; border-radius: 9px; font-weight: 700; cursor: pointer;
    font-size: .92rem; display: flex; align-items: center; gap: 7px;
    white-space: nowrap; transition: opacity .15s; flex-shrink: 0;
}
.sb-submit:hover { opacity: .88; }

.search-layout { display: grid; grid-template-columns: 240px 1fr; gap: 24px; margin-top: 24px; align-items: start; }
@media(max-width:800px){ .search-layout{grid-template-columns:1fr} .search-filters{display:none} }

.search-filters { background: #fff; border-radius: 12px; padding: 20px; border: 1px solid #e8e8e8; position: sticky; top: 100px; }
.sf-title { font-size: .78rem; font-weight: 800; color: #888; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 12px; padding-bottom: 8px; border-bottom: 1px solid #f0f0f0; }
.sf-section { margin-bottom: 18px; }
.sf-section h4 { font-size: .82rem; font-weight: 700; color: #333; margin: 0 0 8px; }
.sf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.sf-input { width: 100%; padding: 8px 10px; border: 1px solid #e4e4e4; border-radius: 7px; font-size: .84rem; box-sizing: border-box; font-family: inherit; }
.sf-select { width: 100%; padding: 8px 10px; border: 1px solid #e4e4e4; border-radius: 7px; font-size: .84rem; font-family: inherit; background: #fff; }
.sf-dur-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.sf-dur-btn {
    padding: 7px 4px; border: 1px solid #e4e4e4; border-radius: 7px;
    text-align: center; font-size: .8rem; cursor: pointer; background: #fff;
    transition: .12s; font-family: inherit; font-weight: 500;
}
.sf-dur-btn:hover, .sf-dur-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.sf-apply { width: 100%; padding: 10px; background: var(--primary); color: #fff; border: none; border-radius: 8px; font-weight: 700; cursor: pointer; font-size: .88rem; margin-top: 6px; transition: opacity .15s; }
.sf-apply:hover { opacity: .88; }
.sf-reset { width: 100%; padding: 7px; background: #fff; color: #888; border: 1px solid #e4e4e4; border-radius: 8px; font-size: .8rem; cursor: pointer; margin-top: 5px; }
.sf-reset:hover { background: #f5f5f5; }

.results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 10px; }
.results-count { font-size: .88rem; color: #666; }
.results-count strong { color: #222; }
.sort-select { padding: 7px 12px; border: 1px solid #e4e4e4; border-radius: 8px; font-size: .83rem; font-family: inherit; background: #fff; cursor: pointer; }

.results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.result-card {
    background: #fff; border-radius: 12px; overflow: hidden;
    border: 1px solid #e8e8e8; transition: border-color .15s, box-shadow .15s;
    display: flex; flex-direction: column;
}
.result-card:hover { border-color: #bbb; box-shadow: 0 4px 18px rgba(0,0,0,.09); }
.rc-img {
    height: 180px; background-size: cover; background-position: center;
    position: relative; flex-shrink: 0;
}
.rc-badge-featured { position: absolute; top: 10px; left: 10px; background: var(--primary); color: #fff; font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; }
.rc-badge-action { position: absolute; top: 10px; right: 10px; background: var(--accent); color: #fff; font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; }
.rc-price-box { position: absolute; bottom: 10px; left: 10px; }
.rc-price-old { background: rgba(0,0,0,.55); color: #ddd; font-size: .7rem; padding: 2px 8px; border-radius: 20px; text-decoration: line-through; display: inline-block; margin-bottom: 3px; }
.rc-price-new { background: var(--accent); color: #fff; font-size: .9rem; font-weight: 800; padding: 4px 10px; border-radius: 20px; display: inline-block; }
.rc-body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; }
.rc-location { font-size: .74rem; color: #999; margin-bottom: 5px; display: flex; align-items: center; gap: 4px; }
.rc-name { font-size: 1.02rem; font-weight: 700; color: #222; margin-bottom: 6px; line-height: 1.3; }
.rc-desc { font-size: .8rem; color: #666; line-height: 1.6; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 10px; }
.rc-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.rc-meta-item { font-size: .74rem; color: #777; display: flex; align-items: center; gap: 4px; }
.rc-meta-item i { color: var(--secondary); font-size: .75rem; }
.rc-actions { display: flex; gap: 7px; }
.rc-btn-detail { flex: 1; padding: 9px; background: var(--primary); color: #fff; border: none; border-radius: 8px; font-size: .82rem; font-weight: 700; cursor: pointer; text-decoration: none; text-align: center; transition: opacity .15s; }
.rc-btn-detail:hover { opacity: .88; color: #fff; }
.rc-btn-book { padding: 9px 14px; background: var(--accent); color: #fff; border: none; border-radius: 8px; font-size: .82rem; font-weight: 700; cursor: pointer; transition: opacity .15s; white-space: nowrap; }
.rc-btn-book:hover { opacity: .88; }

.rc-next-dep { font-size: .72rem; background: #e8f5e9; color: #2e7d32; padding: 2px 8px; border-radius: 10px; font-weight: 700; display: inline-flex; align-items: center; gap: 3px; }
.rc-next-dep.past { background: #f5f5f5; color: #aaa; }
.rc-wish-btn { position: absolute; bottom: 10px; right: 10px; width: 34px; height: 34px; background: rgba(255,255,255,.92); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1rem; color: #ccc; transition: color .15s, transform .15s, box-shadow .15s; z-index: 2; box-shadow: 0 2px 8px rgba(0,0,0,.15); padding: 0; }
.rc-wish-btn:hover { transform: scale(1.12); box-shadow: 0 4px 12px rgba(0,0,0,.2); }
.rc-wish-btn.wishlisted { color: #e74c3c; }
.rc-wish-btn.wishlisted i { font-weight: 900; }

.search-empty {
    text-align: center; padding: 56px 24px; background: #fff; border-radius: 18px;
    border: 1px solid #f0f0f0; box-shadow: 0 4px 24px rgba(0,0,0,.05);
}
.search-empty-icon {
    width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 22px;
    background: linear-gradient(135deg,#eef2fb,#e3ecf9);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.9rem;
}
.search-empty h3 { font-size: 1.32rem; color: #1a1a1a; font-weight: 800; margin-bottom: 10px; }
.search-empty p { max-width: 460px; margin: 0 auto; line-height: 1.65; color: #888; font-size: .92rem; }
.search-empty-cta { margin-top: 26px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.se-btn-primary {
    padding: 13px 26px; background: linear-gradient(135deg, var(--accent,#e74c3c), #ff7043); color: #fff;
    border: none; border-radius: 12px; font-weight: 800; font-size: .9rem; cursor: pointer;
    display: inline-flex; align-items: center; gap: 9px; text-decoration: none; font-family: inherit;
    box-shadow: 0 6px 18px rgba(231,76,60,.3); transition: transform .18s, box-shadow .18s;
}
.se-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(231,76,60,.4); }
.se-btn-secondary {
    padding: 13px 24px; background: #f7f8fa; color: #555; border: 1.5px solid transparent;
    border-radius: 12px; font-weight: 700; font-size: .88rem; cursor: pointer; text-decoration: none;
    transition: .18s; display: inline-flex; align-items: center; gap: 8px;
}
.se-btn-secondary:hover { background: #eef1f5; color: var(--primary); }

.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.pg-btn { padding: 8px 14px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: .85rem; border: 1px solid #e4e4e4; color: #444; background: #fff; transition: .15s; }
.pg-btn:hover, .pg-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.pg-btn.disabled { opacity: .4; pointer-events: none; }

.active-filters { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.af-chip { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; background: #e8f0fe; color: var(--primary); border-radius: 20px; font-size: .78rem; font-weight: 600; }
.af-chip a { color: inherit; text-decoration: none; margin-left: 2px; opacity: .6; }
.af-chip a:hover { opacity: 1; }

@media(max-width:600px){
    .results-grid{grid-template-columns:1fr}
    .search-bar-row{flex-direction:column;gap:0}
    .sb-field{border-right:none;border-bottom:1px solid #f0f0f0;padding:10px 12px}
    .sb-field:last-of-type{border-bottom:none}
}

.utisci-hero{background:linear-gradient(135deg,var(--primary),var(--secondary));color:#fff;padding:120px 0 50px;text-align:center}
.utisci-hero h1{margin:0 0 6px;font-size:2rem}
.utisci-layout{display:grid;grid-template-columns:1fr 340px;gap:32px;padding:40px 0 80px}
@media(max-width:860px){.utisci-layout{grid-template-columns:1fr}}
.t-card{background:#fff;border-radius:14px;padding:22px;border:1px solid #e8e8e8;margin-bottom:16px}
.t-stars{color:#f39c12;font-size:1rem;margin-bottom:8px;letter-spacing:.1em}
.t-content{font-size:.92rem;color:#444;line-height:1.75;font-style:italic;margin-bottom:12px}
.t-author{display:flex;align-items:center;gap:10px}
.t-avatar{width:38px;height:38px;border-radius:50%;background:linear-gradient(135deg,var(--primary),var(--secondary));color:#fff;display:flex;align-items:center;justify-content:center;font-size:.9rem;font-weight:700;flex-shrink:0}
.t-name{font-weight:700;font-size:.88rem;color:#222}
.t-meta{font-size:.74rem;color:#aaa}
.t-dest{display:inline-flex;align-items:center;gap:4px;font-size:.72rem;background:#e0f2fe;color:#0369a1;padding:2px 8px;border-radius:10px;font-weight:700;margin-left:8px;vertical-align:middle}
.t-featured{background:#fffbeb;border-color:#f59e0b}
.t-form-card{background:#fff;border-radius:14px;padding:24px;border:1px solid #e8e8e8;position:sticky;top:110px}
.tf-field{margin-bottom:12px}
.tf-field label{display:block;font-size:.74rem;font-weight:700;color:#555;text-transform:uppercase;letter-spacing:.04em;margin-bottom:4px}
.tf-field input,.tf-field select,.tf-field textarea{width:100%;padding:9px 12px;border:1.5px solid #e4e4e4;border-radius:8px;font-size:.87rem;box-sizing:border-box;font-family:inherit}
.tf-field input:focus,.tf-field select:focus,.tf-field textarea:focus{outline:none;border-color:var(--secondary)}
.star-picker{display:flex;gap:4px;margin-top:4px}
.star-btn{font-size:1.6rem;color:#ddd;cursor:pointer;transition:.1s;background:none;border:none;padding:0}
.star-btn.lit{color:#f39c12}

.ct-hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.22);border-radius:20px;padding:5px 15px;font-size:.73rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;margin-bottom:16px}
.ct-hero h1{font-size:2.2rem}
.cf-row label{display:block;font-size:.73rem;font-weight:700;color:#666;text-transform:uppercase;letter-spacing:.04em;margin-bottom:5px}
.cf-row input,.cf-row select,.cf-row textarea{width:100%;padding:10px 13px;border:1.5px solid #e8e8e8;border-radius:9px;font-size:.9rem;font-family:inherit;box-sizing:border-box;transition:border-color .15s}
.cf-row input:focus,.cf-row select:focus,.cf-row textarea:focus{border-color:var(--secondary);outline:none}
.cf-req{color:#e74c3c}

.profile-pg { background:var(--bg,#f0f2f7); padding:0 0 60px; min-height:80vh; }
.profile-hero { background:linear-gradient(135deg,var(--primary) 0%,var(--secondary) 100%); color:#fff; padding:110px 0 72px; margin-bottom:0; position:relative; overflow:hidden; }
.profile-hero::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 88% 15%,rgba(255,255,255,.14),transparent 55%); pointer-events:none; }
.profile-hero-top { display:flex; align-items:center; gap:20px; position:relative; z-index:1; margin-bottom:0 !important; }
.profile-hero h1 { font-size:1.65rem; font-weight:800; margin:0 0 4px; }
.profile-hero p  { margin:0; opacity:.82; font-size:.88rem; }
.avatar-wrap { position:relative; display:inline-block; cursor:pointer; flex-shrink:0; }
.avatar-img, .avatar-ph { width:96px; height:96px; border-radius:50%; object-fit:cover; border:4px solid rgba(255,255,255,.65); display:block; box-shadow:0 8px 22px rgba(0,0,0,.25); }
.avatar-ph { background:rgba(255,255,255,.18); display:flex; align-items:center; justify-content:center; font-size:2.4rem; color:#fff; }
.avatar-ov { position:absolute; inset:0; border-radius:50%; background:rgba(15,23,42,.55); display:flex; flex-direction:column; align-items:center; justify-content:center; opacity:0; transition:.2s; color:#fff; font-size:.68rem; gap:3px; }
.avatar-wrap:hover .avatar-ov { opacity:1; }
.avatar-ov i { font-size:1.15rem; }
.profile-tabs-bar { position:relative; z-index:2; margin-top:24px; background:#fff; border-radius:14px; box-shadow:0 12px 32px rgba(0,0,0,.12); padding:6px; display:flex; gap:2px; overflow-x:auto; scrollbar-width:none; }
.profile-tabs-bar::-webkit-scrollbar { display:none; }
.ptab { padding:11px 18px; background:none; border:none; color:#8a94a6; font-size:.82rem; font-weight:700; cursor:pointer; white-space:nowrap; border-radius:9px; transition:.15s; display:inline-flex; align-items:center; gap:7px; }
.ptab.active { color:#fff; background:linear-gradient(135deg,var(--primary),var(--secondary)); box-shadow:0 4px 12px rgba(0,0,0,.15); }
.ptab:hover:not(.active) { color:var(--primary); background:#f3f5f9; }
.tab-panel { display:none; }
.tab-panel.active { display:block; }
.profile-pg .panel { background:#fff; border-radius:14px; box-shadow:0 2px 14px rgba(0,0,0,.06); overflow:hidden; margin-bottom:18px; border:1px solid #eef0f4; }
.profile-pg .panel-head { padding:16px 24px; border-bottom:1px solid #f0f0f0; background:#fafbfc; }
.profile-pg .panel-head h3 { margin:0; font-size:.95rem; font-weight:700; color:var(--primary); display:flex; align-items:center; gap:8px; }
.profile-pg .panel-head h3 i { color:var(--secondary); }
.interests-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(100px,1fr)); gap:10px; }
.int-opt input { display:none; }
.int-card { border:1.5px solid #e4e4e4; border-radius:12px; padding:14px 8px; text-align:center; cursor:pointer; transition:.15s; position:relative; }
.int-card:hover { border-color:var(--secondary); transform:translateY(-2px); }
.int-opt input:checked ~ .int-card { border-color:var(--secondary); background:linear-gradient(135deg,#e8f4fd,#f3f0ff); color:var(--secondary); box-shadow:0 4px 12px rgba(52,152,219,.15); }
.int-opt input:checked ~ .int-card::after { content:"\f00c"; font-family:"Font Awesome 6 Free"; font-weight:900; position:absolute; top:6px; right:8px; font-size:.6rem; color:var(--secondary); }
.int-card i { display:block; font-size:1.3rem; margin-bottom:6px; }
.int-card span { font-size:.74rem; font-weight:600; }
.profile-actions { display:flex; gap:10px; justify-content:flex-end; padding-top:8px; }
@media (max-width:640px) {
    .profile-hero { padding:90px 0 52px; }
    .profile-hero-top { gap:14px; }
    .avatar-img, .avatar-ph { width:76px; height:76px; }
    .profile-hero h1 { font-size:1.3rem; }
    .ptab span { display:none; }
    .ptab { padding:11px 14px; }
}

.cf-dropzone{border:2px dashed #c8d5e3;border-radius:14px;padding:30px 20px;text-align:center;cursor:pointer;transition:.2s;background:#fafbfd;position:relative}
.cf-dropzone:hover,.cf-dz-over{border-color:var(--secondary);background:#f0f7ff}
.cf-dz-icon{font-size:2rem;color:var(--secondary);opacity:.5;margin-bottom:10px;display:block;transition:.2s}
.cf-dropzone:hover .cf-dz-icon,.cf-dz-over .cf-dz-icon{opacity:.85;transform:translateY(-3px)}
.cf-dz-txt{font-size:.88rem;color:#666;margin:4px 0}
.cf-dz-link{color:var(--secondary);font-weight:700}
.cf-dz-hint{font-size:.74rem;color:#b0b8c6;margin:4px 0 0}
.cf-dz-count{position:absolute;top:10px;right:14px;font-size:.71rem;color:#b0b8c6;font-weight:600}
.cf-dz-full{opacity:.5;pointer-events:none}
.cf-files{margin-top:12px;display:flex;flex-direction:column;gap:7px}
.cf-file-item{display:flex;align-items:center;gap:10px;padding:10px 14px;background:#f4f7fb;border-radius:10px;border:1px solid #e4ecf3;transition:.15s;animation:cfFadeIn .2s ease}
@keyframes cfFadeIn{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:none}}
.cf-file-item.uploading{opacity:.65}
.cf-file-icon{font-size:.95rem;flex-shrink:0;width:20px;text-align:center}
.cf-ico-img{color:#0ea5e9}.cf-ico-pdf{color:#e74c3c}.cf-ico-doc{color:#2563eb}.cf-ico-file{color:#6b7280}
.cf-file-info{flex:1;min-width:0}
.cf-file-name{font-size:.83rem;color:#333;font-weight:600;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block}
.cf-file-sz{font-size:.72rem;color:#9ca3af}
.cf-file-rm{background:none;border:none;color:#d1d5db;cursor:pointer;padding:4px 7px;border-radius:6px;transition:.15s;flex-shrink:0;line-height:1}
.cf-file-rm:hover{color:#e74c3c;background:#fdecea}
.cf-file-spin{color:var(--secondary);font-size:.82rem;flex-shrink:0}

