:root {
    /* Beyaz + altın (gold) kurumsal palet */
    --bg: #ffffff;
    --bg-soft: #f8f7f4;
    --surface: #ffffff;
    --surface-hover: #faf9f6;
    --text: #0f172a;
    --text-soft: #475569;
    --muted: #64748b;
    --primary: #b45309;
    --primary-dim: #92400e;
    --accent: #fbbf24;
    --gradient: linear-gradient(135deg, #92400e 0%, #b45309 45%, #d97706 100%);
    --gradient-warm: linear-gradient(135deg, #92400e 0%, #b45309 40%, #fbbf24 100%);
    --radius: 20px;
    --radius-sm: 14px;
    --shadow: 0 4px 6px -1px rgba(0,0,0,.08), 0 10px 20px -5px rgba(0,0,0,.06);
    --shadow-hover: 0 20px 40px -10px rgba(180,83,9,.16), 0 0 0 1px rgba(180,83,9,.12);
    --shadow-card: 0 4px 24px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.04);
    --glass: rgba(255,255,255,.92);
    --glass-border: rgba(0,0,0,.08);
    --space-1: .5rem;
    --space-2: .75rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --line: 1.65;
    --title-size: clamp(1.15rem, 1.3vw + .95rem, 1.65rem);
    --body-size: clamp(.95rem, .2vw + .9rem, 1rem);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* { box-sizing: border-box; }
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Manrope", system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: var(--line);
    font-size: var(--body-size);
    transition: background .4s var(--ease-out), color .4s var(--ease-out);
    animation: pageFadeIn .5s var(--ease-out);
}
@keyframes pageFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
a {
    color: inherit;
    text-decoration: none;
    transition: color .2s var(--ease-out);
}
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
.container { width: min(1180px, 92%); margin: 0 auto; }
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform .15s var(--ease-out), width .2s, height .2s;
}
.cursor-dot.hover { transform: translate(-50%, -50%) scale(2); opacity: .5; }
.cursor-dot.hidden { opacity: 0; }

.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transition: background .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.topbar.scrolled { box-shadow: 0 10px 34px rgba(2,6,23,.10); }
.menu-toggle {
    display: none;
    place-items: center;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text);
    font-size: 1.15rem;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 12px;
    transition: background .2s, border-color .2s, color .2s;
}
.menu-toggle:hover { background: rgba(180, 83, 9, .06); border-color: rgba(180, 83, 9, .22); color: var(--primary-dim); }

.menu-drawer-head {
    display: none;
}
.menu-drawer-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}
.menu-drawer-close {
    display: none;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.06);
    color: var(--text);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.menu-drawer-close:hover {
    background: rgba(180, 83, 9, 0.12);
    color: var(--primary-dim);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: 14px 0;
    min-height: 64px;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-3);
    flex: 1;
    min-width: 0;
}

.menu {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1.35rem);
    color: var(--text-soft);
    font-size: .92rem;
    font-weight: 600;
}

.support-btn-desktop { display: none; }
.support-btn-mobile { display: none; }

@media (min-width: 981px) {
    .support-btn-desktop { display: inline-flex; align-items: center; gap: 10px; }
    .menu .support-btn-mobile { display: none !important; }
}

.support-btn {
    background: rgba(37, 211, 102, 0.1);
    color: #0f172a;
    border: 1px solid rgba(37, 211, 102, 0.35);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 16px;
    border-radius: 999px;
    white-space: nowrap;
}
.support-btn:hover {
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.22);
    border-color: rgba(37, 211, 102, 0.5);
}

@media (max-width: 980px) {
    .nav-wrap {
        justify-content: flex-start;
        gap: var(--space-2);
        padding-top: max(12px, env(safe-area-inset-top, 0px));
        padding-bottom: max(12px, env(safe-area-inset-bottom, 0px) * 0);
    }
    .nav-right {
        flex: 0 0 0;
        width: 0;
        min-width: 0;
        margin: 0;
        padding: 0;
        overflow: visible;
        pointer-events: none;
    }
    .nav-right .menu,
    .nav-right .menu a,
    .nav-right .support-btn-mobile {
        pointer-events: auto;
    }
    .menu-toggle {
        display: grid;
        flex-shrink: 0;
        margin-left: auto;
        width: 46px;
        height: 46px;
        padding: 0;
        border-radius: 14px;
        border: 1px solid rgba(2, 6, 23, 0.09);
        background: rgba(248, 247, 244, 0.95);
        box-shadow: 0 2px 12px rgba(2, 6, 23, 0.06);
    }
    .menu-toggle.open {
        background: rgba(180, 83, 9, 0.12);
        border-color: rgba(180, 83, 9, 0.35);
        color: var(--primary-dim);
    }

    .support-btn-desktop { display: none !important; }
    .support-btn-mobile { display: inline-flex !important; align-items: center; justify-content: center; gap: 10px; width: 100%; margin-top: 16px; }

    .menu-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: -8px 0 16px;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(2, 6, 23, 0.08);
    }
    .menu-drawer-close { display: grid; }

    .menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        height: 100dvh;
        width: min(100%, 380px);
        margin: 0;
        padding: max(20px, env(safe-area-inset-top)) 20px max(24px, env(safe-area-inset-bottom)) 20px;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 6px;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(2, 6, 23, 0.08);
        box-shadow: -24px 0 80px rgba(2, 6, 23, 0.18);
        border-radius: 22px 0 0 22px;
        transform: translateX(105%);
        transition: transform 0.32s var(--ease-out);
        z-index: 1002;
        overflow-y: auto;
        color: var(--text);
    }
    .menu.open { transform: translateX(0); }
    .menu a:not(.support-btn) {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 15px 16px !important;
        border-radius: 14px;
        font-size: 1.02rem;
        font-weight: 600;
        background: rgba(248, 247, 244, 0.65);
        border: 1px solid rgba(2, 6, 23, 0.06);
        transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease-out);
    }
    .menu a:not(.support-btn):hover,
    .menu a:not(.support-btn):active {
        background: rgba(255, 255, 255, 0.95);
        border-color: rgba(180, 83, 9, 0.22);
        color: var(--primary-dim);
        transform: translateX(-2px);
    }
    .menu a:not(.support-btn)::after {
        display: block !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.72rem;
        opacity: 0.4;
        transition: opacity 0.2s, transform 0.2s var(--ease-out);
    }
    .menu a:not(.support-btn):hover::after {
        opacity: 0.7;
        transform: translateX(2px);
    }

    .menu .support-btn-mobile {
        margin-top: 20px;
        padding: 14px 18px;
        justify-content: center;
        border-radius: 14px;
        font-size: 0.95rem;
        box-shadow: 0 8px 28px rgba(37, 211, 102, 0.2);
    }

    .menu-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.42);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.28s var(--ease-out);
        z-index: 1001;
    }
    .menu-backdrop.open {
        opacity: 1;
        pointer-events: auto;
    }
}
.logo {
    font-size: 1.35rem;
    font-weight: 800;
    font-family: "Playfair Display", Georgia, serif;
    letter-spacing: -0.02em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-flex;
    align-items: center;
}
.logo span:not(.logo-text) { -webkit-text-fill-color: var(--primary); }
.logo .logo-text { -webkit-text-fill-color: transparent; }
.logo-link:has(.logo-img) { background: none; -webkit-background-clip: unset; -webkit-text-fill-color: unset; }
.logo-img {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    object-position: left center;
}
@media (max-width: 640px) {
    .logo-img { height: 32px; max-width: 120px; }
}
.menu a:not(.support-btn) {
    position: relative;
    padding: var(--space-1) 0;
}
.menu a:not(.support-btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width .3s var(--ease-out);
}
.menu a:not(.support-btn):hover { color: var(--text); }
.menu a:not(.support-btn):hover::after { width: 100%; }
.nav-search input {
    width: 220px;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    padding: 10px 16px;
    background: rgba(15, 23, 42, .03);
    color: var(--text);
    transition: border-color .2s, background .2s;
}
.nav-search input::placeholder { color: var(--muted); }
.nav-search input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(15, 23, 42, .05);
}
.btn {
    background: var(--gradient);
    color: #0f0f12;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform .2s var(--ease-spring), box-shadow .2s var(--ease-out);
}
.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 26px rgba(180,83,9,.22);
}
.btn:active { transform: scale(0.98); }
.btn i { transition: transform .3s var(--ease-out); }
.btn:hover i { transform: translateX(2px); }
.btn.ghost {
    background: rgba(15, 23, 42, .04);
    color: var(--text);
    border: 1px solid var(--glass-border);
}
.btn.ghost:hover { background: rgba(15, 23, 42, .06); border-color: var(--primary); }
.whatsapp-btn { background: #25D366; color: #fff; }
.whatsapp-btn:hover { box-shadow: 0 4px 20px rgba(37,211,102,.4); }

/* Collection (Bungalovlar) */
.collection-head { padding: 54px 0 14px; text-align: center; }
.collection-kicker {
    display: inline-block;
    font-weight: 700;
    letter-spacing: .14em;
    font-size: .78rem;
    color: var(--muted);
}
.collection-title {
    margin-top: 10px;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-size: clamp(1.6rem, 1.6vw + 1.2rem, 2.25rem);
    color: var(--text);
}
.collection-subtitle {
    margin: 10px auto 0;
    max-width: 820px;
    color: var(--muted);
    font-size: 1rem;
}
.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
/* Tablet + mobil: modern 2 sütun, çox kiçik ekranda 1 sütun */
@media (max-width: 980px) { .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; } }
@media (max-width: 520px) { .collection-grid { grid-template-columns: 1fr; } }

.collection-card {
    background: #ffffff;
    border: 1px solid rgba(28, 25, 23, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 44px rgba(2, 6, 23, 0.08);
    overflow: hidden;
    transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out), border-color .18s;
}
.collection-media {
    position: relative;
    padding: 16px 16px 0;
    background: #ffffff;
}
.collection-price {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(28, 25, 23, 0.10);
    padding: 7px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.84rem;
    color: #1c1917;
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.12);
}
.collection-media-link {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 55px rgba(2, 6, 23, 0.18);
}
.collection-media img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}
@media (max-width: 980px) {
    .collection-media img { height: 180px; }
}
.collection-meta-overlay {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 2;
    display: grid;
    gap: 4px;
}
.collection-name {
    font-weight: 900;
    color: #fff;
    font-size: 1.05rem;
    text-shadow: 0 12px 34px rgba(0,0,0,.5);
    letter-spacing: -0.01em;
    line-height: 1.15;
}
.collection-meta-loc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.92);
    opacity: 0.95;
}
.collection-meta-loc i { opacity: 0.9; }
.collection-media-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0) 58%);
}
.collection-info {
    padding: 14px 18px 18px;
    border-top: 1px solid rgba(28, 25, 23, 0.06);
    background: #ffffff;
}
.collection-stats {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: rgba(68, 64, 60, 0.92);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 2px 0 12px;
    border-bottom: 1px solid rgba(28, 25, 23, 0.06);
}
.collection-stats .stat { display: inline-flex; align-items: center; gap: 8px; }
.collection-stats .stat i { color: rgba(120, 113, 108, 0.85); }
.collection-label {
    margin-top: 14px;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    color: rgba(120, 113, 108, 0.95);
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}
.collection-info:not(:has(.collection-desc)) .collection-label {
    margin-top: 8px;
}
.collection-desc {
    margin-top: 8px;
    color: var(--text-soft);
    font-size: .98rem;
    line-height: 1.6;
    min-height: 3.1em;
}
.collection-features {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}
.collection-features .feat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(28, 25, 23, 0.06);
    color: #292524;
    font-weight: 800;
    font-size: 0.86rem;
}
.collection-features .feat i { color: rgba(180, 83, 9, 0.9); }
.collection-features .feat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    line-height: 1.2;
}
.collection-features .feat-title {
    display: block;
    font-weight: 900;
    font-size: 0.86rem;
    letter-spacing: -0.01em;
    color: #292524;
}
.collection-features .feat-sub {
    display: block;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    text-transform: none;
    color: rgba(120, 113, 108, 0.95);
}
.collection-cta { margin-top: 16px; display: flex; justify-content: stretch; }

.collection-card:hover {
    transform: translateY(-2px);
    border-color: rgba(28, 25, 23, 0.10);
    box-shadow: 0 18px 60px rgba(2, 6, 23, 0.12);
}
.btn-collection {
    --btn-collection-bg: linear-gradient(135deg, #fde68a 0%, #fbbf24 28%, #d97706 72%, #b45309 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 4px 6px 4px 5px;
    border-radius: 999px;
    border: 1px solid rgba(180, 83, 9, 0.35);
    background: var(--btn-collection-bg);
    color: #0f172a;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.45) inset,
        0 14px 32px rgba(180, 83, 9, 0.22),
        0 2px 8px rgba(2, 6, 23, 0.06);
    transition: transform 0.22s var(--ease-spring), box-shadow 0.22s var(--ease-out), border-color 0.2s;
    position: relative;
    overflow: hidden;
}
.btn-collection::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(255,255,255,.35) 0%, transparent 45%);
    pointer-events: none;
    opacity: 0.55;
}
.btn-collection > * {
    position: relative;
    z-index: 1;
}
.btn-collection-wa {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    font-size: 1.15rem;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
    transition: transform 0.22s var(--ease-spring), box-shadow 0.22s;
}
.btn-collection-text { flex: 1; text-align: center; padding-right: 8px; }
.btn-collection-arrow {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(15, 23, 42, 0.12);
    color: #0f172a;
    font-size: 0.78rem;
    transition: transform 0.25s var(--ease-out), background 0.2s;
}
.btn-collection:hover {
    transform: translateY(-2px);
    border-color: rgba(180, 83, 9, 0.5);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 20px 44px rgba(180, 83, 9, 0.32),
        0 4px 12px rgba(2, 6, 23, 0.08);
}
.btn-collection:hover .btn-collection-wa {
    transform: scale(1.06);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.55);
}
.btn-collection:hover .btn-collection-arrow {
    transform: translateX(3px);
    background: rgba(15, 23, 42, 0.18);
}
.btn-collection:active {
    transform: translateY(0);
}
.btn-collection:focus-visible {
    outline: 2px solid var(--primary-dim);
    outline-offset: 3px;
}

/* Rezervasyon pop-up (index + bungalovlar) */
body.reserve-modal-open { overflow: hidden; }
.reserve-modal[aria-hidden="true"] { display: none; }
.reserve-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 18px;
}
.reserve-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.reserve-modal__dialog {
    position: relative;
    width: min(680px, 100%);
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(28, 25, 23, 0.08);
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.35);
    padding: clamp(1.15rem, 3vw, 1.6rem);
    animation: modalPop 0.25s var(--ease-out);
}
@keyframes modalPop {
    from { opacity: 0; transform: translateY(10px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.reserve-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(28, 25, 23, 0.1);
    background: #fafaf9;
    color: #44403c;
    display: grid;
    place-items: center;
    cursor: pointer;
}
.reserve-modal__close:hover { background: #f5f5f4; }
.reserve-modal__close:focus-visible { outline: 2px solid #a8a29e; outline-offset: 2px; }

.reserve-modal__kicker {
    margin: 0 0 6px;
    font-size: 0.64rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #78716c;
    font-weight: 700;
}
.reserve-modal__title {
    margin: 0;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: clamp(1.15rem, 1vw + 1.05rem, 1.45rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1c1917;
}
.reserve-modal__sub {
    margin: 10px 0 0;
    color: #78716c;
    font-size: 0.92rem;
    line-height: 1.6;
}
.reserve-modal__form { margin-top: 16px; }
.reserve-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
@media (max-width: 720px) {
    .reserve-grid { grid-template-columns: 1fr; }
}
.reserve-field label {
    display: block;
    margin: 0 0 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #44403c;
}
.reserve-field input {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(28, 25, 23, 0.12);
    background: #fafaf9;
    color: #1c1917;
    font: inherit;
}
.reserve-field input:focus {
    outline: none;
    border-color: rgba(217, 119, 6, 0.5);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.14);
    background: #fff;
}
.reserve-error {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(239, 68, 68, 0.28);
    background: rgba(239, 68, 68, 0.08);
    color: #991b1b;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.5;
}
.reserve-error.is-pop {
    animation: reserveErrorPop 0.22s var(--ease-out);
}
@keyframes reserveErrorPop {
    from { transform: translateY(-2px); opacity: 0.5; }
    to { transform: translateY(0); opacity: 1; }
}
.reserve-actions { margin-top: 14px; }
.reserve-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(22, 163, 74, 0.28);
    background: rgba(37, 211, 102, 0.12);
    color: #166534;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .2s var(--ease-spring);
}
.reserve-submit:hover { background: rgba(37, 211, 102, 0.18); border-color: rgba(22, 163, 74, 0.42); transform: translateY(-1px); }
.reserve-submit:active { transform: translateY(0); }
.reserve-submit:focus-visible { outline: 2px solid #22c55e; outline-offset: 2px; }
.reserve-note {
    margin: 10px 0 0;
    font-size: 0.82rem;
    color: #78716c;
    line-height: 1.55;
}

@media (max-width: 640px) {
    .reserve-modal {
        padding: 0;
        place-items: end center;
    }
    .reserve-modal__dialog {
        width: 100%;
        border-radius: 18px 18px 0 0;
        padding: 1.05rem 1rem 1rem;
        max-height: min(92vh, 720px);
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    .reserve-modal__close {
        top: 10px;
        right: 10px;
        width: 42px;
        height: 42px;
    }
    .reserve-actions {
        position: sticky;
        bottom: 0;
        padding-top: 10px;
        background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #ffffff 42%);
    }
}

@keyframes heroKenburns {
    0% { transform: scale(1) translateZ(0); }
    100% { transform: scale(1.07) translateZ(0); }
}

.hero {
    min-height: min(88vh, 820px);
    color: #fff;
    display: grid;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
    border-radius: 0 0 clamp(18px, 3.5vw, 32px);
    box-shadow: 0 24px 80px rgba(2, 6, 23, 0.14);
}
@media (min-width: 900px) {
    .hero.hero-modern {
        margin: 14px auto 0;
        width: calc(100% - 28px);
        max-width: 1380px;
        border-radius: clamp(20px, 2.5vw, 32px);
        min-height: min(82vh, 880px);
    }
}
.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    min-height: min(78vh, 760px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: max(72px, env(safe-area-inset-top)) 16px calc(120px + env(safe-area-inset-bottom)) 16px;
}
.hero-title-wide {
    margin: 0 auto;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.03em;
    max-width: 1100px;
    line-height: 1.08;
    font-size: clamp(2.1rem, 4vw + 1rem, 3.85rem);
    text-shadow: 0 4px 48px rgba(2, 6, 23, 0.45), 0 1px 2px rgba(0, 0, 0, 0.3);
}
.hero-subtitle-wide {
    margin: 20px auto 0;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.98rem, 0.5vw + 0.88rem, 1.18rem);
    line-height: 1.65;
    font-weight: 500;
    text-shadow: 0 2px 24px rgba(2, 6, 23, 0.35);
}
.hero-ctas {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-cta-primary {
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 35%, #d97706 100%);
    color: #0f172a !important;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.35);
    font-weight: 800;
}
.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(180, 83, 9, 0.35);
}
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    font-size: 1rem;
    border-radius: 999px;
}
.hero-fallback {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1464822759844-d150ad6d1d28?auto=format&fit=crop&w=1800&q=80') center/cover;
    will-change: transform;
    filter: blur(12px) saturate(1.2);
    transform: scale(1.05);
    opacity: 0.85;
    transition: filter 0.9s var(--ease-out), opacity 0.9s var(--ease-out);
    z-index: 1;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.7s var(--ease-out);
}
.hero.video-ready .hero-video { opacity: 1; }
.hero.video-ready .hero-fallback {
    filter: blur(0);
    transform: scale(1);
    opacity: 0.35;
}
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 2;
}
.hero-has-slides .hero-fallback {
    display: none;
}
.hero-has-slides .hero-slider {
    background-color: #0c1222;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.15s var(--ease-out);
    transform: scale(1) translateZ(0);
    backface-visibility: hidden;
    will-change: opacity, transform;
}
.hero-slide:not(.active) {
    z-index: 0;
    animation: none !important;
}
.hero-slide.active {
    opacity: 1;
    z-index: 1;
    animation: heroKenburns 16s ease-in-out infinite alternate;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12, 18, 34, 0.55) 0%,
        rgba(12, 18, 34, 0.12) 42%,
        rgba(12, 18, 34, 0.35) 72%,
        rgba(5, 8, 18, 0.82) 100%
    );
    z-index: 3;
    pointer-events: none;
}
.hero .container { position: relative; z-index: 4; }
.hero h1 {
    margin: 0 0 var(--space-2);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    animation: fadeUp 0.6s var(--ease-out) both;
}
.hero-subtitle {
    margin: 0 0 var(--space-4);
    color: var(--text-soft);
    font-size: 1.05rem;
    animation: fadeUp 0.6s var(--ease-out) 0.1s both;
}
.hero-modern .hero-content { text-align: center; }
.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 var(--space-2);
    animation: fadeUp 0.6s var(--ease-out) both;
}
.hero-modern .hero-ctas {
    animation: fadeUp 0.6s var(--ease-out) 0.2s both;
}
.btn-hero-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}
.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-5);
    margin-top: var(--space-5);
    padding-top: var(--space-5);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeUp 0.6s var(--ease-out) 0.3s both;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.trust-badges {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-top: var(--space-4);
    animation: fadeUp 0.6s var(--ease-out) 0.3s both;
}
.trust-badges span {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 14px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    font-size: 0.9rem;
    display: flex;
    gap: 8px;
    align-items: center;
    transition: transform 0.2s var(--ease-spring), background 0.2s;
}
.trust-badges span:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

/* Hero — bölge + slayt noktaları (şüşə panel) */
.hero-meta-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 0 18px calc(22px + env(safe-area-inset-bottom));
    pointer-events: none;
}
.hero-meta-bottom > * {
    pointer-events: auto;
}
.hero-region-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: min(100%, 520px);
    padding: 11px 18px 11px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px rgba(2, 6, 23, 0.25);
}
.hero-region-chip-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(251, 191, 36, 0.25);
    color: #fef3c7;
    font-size: 0.95rem;
}
.hero-region-chip-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}
.hero-region-chip-sep {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 2px;
}
.hero-region-chip-value {
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}
@media (max-width: 480px) {
    .hero-region-chip-sep { display: none; }
    .hero-region-chip { padding: 10px 14px; gap: 8px; }
}
.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, width 0.3s var(--ease-out);
}
.hero-dot:hover {
    background: rgba(255, 255, 255, 0.55);
    transform: scale(1.05);
}
.hero-dot.active {
    background: linear-gradient(90deg, #fbbf24, #d97706);
    width: 28px;
    box-shadow: 0 2px 12px rgba(251, 191, 36, 0.5);
}
.hero-dot:focus-visible {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
    .hero-slide.active {
        animation: none !important;
    }
}

/* Ana sayfa — Hikayemiz bölümü */
.story-section {
    padding: clamp(2.75rem, 7vw, 5rem) 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-soft) 55%, var(--surface) 100%);
    border-top: 1px solid var(--glass-border);
}
.story-section-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: clamp(1.75rem, 4.5vw, 3.5rem);
    align-items: center;
}
.story-section-media {
    border-radius: clamp(16px, 3vw, 24px);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    aspect-ratio: 4 / 5;
    max-height: min(88vh, 640px);
    background: var(--bg-soft);
}
.story-section-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.story-kicker {
    margin: 0 0 10px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}
.story-title {
    margin: 0;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: clamp(1.85rem, 4vw + 1rem, 2.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.07;
    color: var(--text);
}
.story-tagline {
    margin: 10px 0 0;
    font-size: clamp(1.05rem, 1.5vw + 0.85rem, 1.35rem);
    font-weight: 700;
    color: var(--text);
}
.story-lead {
    margin: clamp(1.1rem, 2.5vw, 1.5rem) 0 0;
    font-size: clamp(0.9rem, 0.35vw + 0.84rem, 1.02rem);
    line-height: 1.72;
    color: var(--text-soft);
}
.story-brand {
    font-weight: 800;
    color: var(--text);
}
.story-body {
    margin: 1rem 0 0;
    font-size: clamp(0.88rem, 0.3vw + 0.82rem, 0.98rem);
    line-height: 1.72;
    color: var(--muted);
    max-width: 38rem;
}
.story-highlights {
    margin-top: clamp(1.35rem, 3vw, 1.85rem);
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
}
.story-highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(2, 6, 23, 0.07);
    box-shadow: 0 4px 20px rgba(2, 6, 23, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.story-highlight:hover {
    border-color: rgba(180, 83, 9, 0.18);
    box-shadow: 0 8px 28px rgba(180, 83, 9, 0.08);
}
.story-highlight-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
}
.story-highlight-icon--leaf {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.22);
}
.story-highlight-icon--heart {
    background: rgba(180, 83, 9, 0.1);
    color: var(--primary-dim);
    border: 1px solid rgba(180, 83, 9, 0.22);
}
.story-highlight-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    padding-top: 2px;
}
.story-highlight-title {
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--text);
}
.story-highlight-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.45;
}
@media (max-width: 900px) {
    .story-section-inner {
        grid-template-columns: 1fr;
        gap: clamp(1.35rem, 4vw, 2rem);
    }
    .story-section-media {
        max-height: min(52vh, 420px);
        aspect-ratio: 16 / 10;
        max-width: min(100%, 560px);
        margin: 0 auto;
        width: 100%;
    }
    .story-section-content {
        text-align: left;
        max-width: 640px;
        margin: 0 auto;
    }
    .story-highlights { max-width: none; }
}

/* Ana sayfa — misafir yorumları: yavaş autoplay, sürükleme, duraklat */
.home-reviews {
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2.75rem, 6vw, 4.25rem);
    background: linear-gradient(180deg, #fafaf9 0%, #ffffff 55%);
    border-top: 1px solid rgba(28, 25, 23, 0.06);
}
.home-reviews-header {
    text-align: center;
    max-width: 38rem;
    margin: 0 auto clamp(1.35rem, 3vw, 1.85rem);
    padding: 0 var(--space-3);
}
.home-reviews-kicker {
    margin: 0 0 6px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #78716c;
}
.home-reviews-title {
    margin: 0;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: clamp(1.4rem, 2.2vw + 1rem, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #292524;
}
.home-reviews-lead {
    margin: 10px 0 0;
    font-size: 0.94rem;
    line-height: 1.68;
    color: #78716c;
}
.home-reviews-shell {
    padding: clamp(1.1rem, 2.5vw, 1.5rem);
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(28, 25, 23, 0.07);
    box-shadow: 0 1px 3px rgba(28, 25, 23, 0.04), 0 12px 40px rgba(28, 25, 23, 0.04);
}
.home-reviews-toolbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.home-reviews-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(28, 25, 23, 0.1);
    background: #fafaf9;
    color: #44403c;
    cursor: pointer;
    transition: background .18s, border-color .18s, color .18s;
}
.home-reviews-nav:hover {
    background: #f5f5f4;
    border-color: rgba(28, 25, 23, 0.15);
    color: #1c1917;
}
.home-reviews-nav:focus-visible {
    outline: 2px solid #a8a29e;
    outline-offset: 2px;
}
.home-reviews-autoplay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(28, 25, 23, 0.1);
    background: #fafaf9;
    color: #57534e;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background .18s, border-color .18s;
}
.home-reviews-autoplay:hover {
    background: #f5f5f4;
    border-color: rgba(28, 25, 23, 0.13);
}
.home-reviews-autoplay:focus-visible {
    outline: 2px solid #a8a29e;
    outline-offset: 2px;
}
.home-reviews-autoplay[aria-pressed="false"] {
    background: #fff;
}
.home-reviews-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    padding: 4px 2px 10px;
    margin: 0 -2px;
    scrollbar-width: thin;
    scrollbar-color: rgba(120, 113, 108, 0.35) transparent;
}
.home-reviews-viewport:active {
    cursor: grabbing;
}
.home-reviews-viewport:focus-visible {
    outline: 2px solid rgba(120, 113, 108, 0.45);
    outline-offset: 3px;
    border-radius: 14px;
}
.home-reviews-viewport::-webkit-scrollbar {
    height: 5px;
}
.home-reviews-viewport::-webkit-scrollbar-thumb {
    background: rgba(120, 113, 108, 0.28);
    border-radius: 999px;
}
.home-reviews-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 18px;
    width: max-content;
    padding: 6px 4px 4px;
}
.home-review-card {
    position: relative;
    flex: 0 0 min(300px, calc(100vw - 72px));
    scroll-snap-align: start;
    scroll-margin-inline: 4px;
    padding: 1.35rem 1.3rem 1.15rem;
    border-radius: 16px;
    background: #fafaf9;
    border: 1px solid rgba(28, 25, 23, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
@media (min-width: 720px) {
    .home-review-card {
        flex: 0 0 min(312px, calc((100vw - 120px) / 2));
    }
}
@media (min-width: 1024px) {
    .home-reviews-shell {
        padding: 1.35rem 1.5rem 1.25rem;
    }
    .home-review-card {
        flex: 0 0 calc((min(1180px, 92vw) - 3.5rem - 36px) / 3);
        max-width: 380px;
    }
}
.home-review-card__quote {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 0.95rem;
    color: rgba(180, 83, 9, 0.2);
    line-height: 1;
    pointer-events: none;
}
.home-review-card:focus-visible {
    outline: 2px solid rgba(180, 83, 9, 0.45);
    outline-offset: 2px;
}
.home-review-card__stars {
    display: flex;
    gap: 4px;
    margin: 0 0 12px;
    padding-right: 1.5rem;
    font-size: 0.78rem;
    color: #d97706;
}
.home-review-card__star--dim {
    color: #a8a29e;
    opacity: 0.55;
}
.home-review-card__text {
    margin: 0 0 14px;
    font-size: 0.93rem;
    line-height: 1.68;
    color: #57534e;
}
.home-review-card__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 12px;
    border-top: 1px solid rgba(28, 25, 23, 0.07);
}
.home-review-card__name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #292524;
}
.home-review-card__place {
    font-size: 0.8rem;
    font-weight: 500;
    color: #78716c;
}
@media (prefers-reduced-motion: reduce) {
    .collection-card.is-tap-pulse,
    .card.card-magnovia.is-tap-pulse,
    .home-review-card.is-tap-pulse {
        animation: none;
    }
    .home-reviews-viewport {
        scroll-behavior: auto;
    }
}

@keyframes uiCardTap {
    0%, 100% { transform: scale(1); }
    45% { transform: scale(0.972); }
}
.collection-card.is-tap-pulse,
.card.card-magnovia.is-tap-pulse {
    animation: uiCardTap 0.48s var(--ease-out);
}
.home-review-card.is-tap-pulse {
    animation: uiCardTap 0.48s var(--ease-out);
}

/* Deneyim — modern üst başlıq + “misafirlerimizin dilinden” */
.experience-hero {
    padding: clamp(2.5rem, 6vw, 4.25rem) 0 clamp(1.25rem, 3vw, 1.75rem);
    background: linear-gradient(180deg, #ffffff 0%, #fafaf9 55%, var(--bg-soft) 100%);
    border-bottom: 1px solid var(--glass-border);
}
.experience-hero__inner {
    text-align: center;
    max-width: 52rem;
    margin: 0 auto;
}
.experience-hero__title {
    margin: 0;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: clamp(2rem, 3.4vw + 1.1rem, 3.1rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #0b0f18; /* qara */
}
.experience-hero__lead {
    margin: 14px auto 0;
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.7;
}
.experience-voice {
    padding: clamp(2rem, 5vw, 3.25rem) 0;
    background: var(--surface);
}
.experience-voice__head {
    text-align: center;
    max-width: 46rem;
    margin: 0 auto 14px;
}
.experience-voice__kicker {
    margin: 0 0 8px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #0b0f18; /* qara */
}
.experience-voice__title {
    margin: 0;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: clamp(1.45rem, 2vw + 1rem, 2.2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #0b0f18;
}
.experience-voice__brand {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.experience-voice__sub {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
}
.home-reviews.home-reviews--embedded {
    padding: 0;
    background: transparent;
    border-top: none;
}
.home-reviews--embedded .home-reviews-shell {
    margin-top: 14px;
}

.experience-extra {
    padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4.25rem);
    background: linear-gradient(180deg, var(--bg-soft) 0%, #ffffff 100%);
    border-top: 1px solid var(--glass-border);
}
.experience-extra__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
@media (max-width: 980px) {
    .experience-extra__grid { grid-template-columns: 1fr; }
}
.experience-extra__card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: var(--shadow-card);
}
.experience-extra__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(180, 83, 9, 0.08);
    border: 1px solid rgba(180, 83, 9, 0.16);
    color: var(--primary-dim);
    margin-bottom: 12px;
    font-size: 1.05rem;
}
.experience-extra__card h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}
.experience-extra__card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.65;
    font-size: 0.92rem;
}
.experience-extra__cta {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(180, 83, 9, 0.16);
    box-shadow: 0 16px 44px rgba(180, 83, 9, 0.08);
}
.experience-extra__cta strong {
    display: block;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.experience-extra__cta span {
    color: var(--muted);
    font-size: 0.92rem;
}
@media (max-width: 720px) {
    .experience-extra__cta { flex-direction: column; align-items: stretch; text-align: left; }
    .experience-extra__cta .btn { width: 100%; justify-content: center; }
}

/* İletişim — modern 2026 */
.contact-hero {
    padding: clamp(2.5rem, 6vw, 4.25rem) 0 clamp(1.5rem, 4vw, 2.25rem);
    background: linear-gradient(180deg, #ffffff 0%, #fafaf9 55%, var(--bg-soft) 100%);
    border-bottom: 1px solid var(--glass-border);
}
.contact-hero__inner {
    text-align: center;
    max-width: 52rem;
    margin: 0 auto;
}
.contact-hero__title {
    margin: 0;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: clamp(2rem, 3.2vw + 1.1rem, 3rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #0b0f18;
}
.contact-hero__lead {
    margin: 14px auto 0;
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.7;
}
.contact-cards {
    padding: clamp(1.75rem, 5vw, 3rem) 0;
    background: var(--surface);
}
.contact-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
@media (max-width: 980px) { .contact-cards__grid { grid-template-columns: 1fr; } }
.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 16px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(28, 25, 23, 0.08);
    box-shadow: 0 14px 44px rgba(2, 6, 23, 0.06);
    color: #292524;
    text-decoration: none;
    transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out), border-color .18s;
}
.contact-card:hover { transform: translateY(-2px); box-shadow: 0 18px 60px rgba(2,6,23,0.08); border-color: rgba(28,25,23,0.12); }
.contact-card:focus-visible { outline: 2px solid rgba(217, 119, 6, 0.45); outline-offset: 2px; }
.contact-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(180, 83, 9, 0.08);
    border: 1px solid rgba(180, 83, 9, 0.14);
    color: rgba(180, 83, 9, 0.95);
    flex-shrink: 0;
    font-size: 1.1rem;
}
.contact-card--wa .contact-card__icon {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(22, 163, 74, 0.18);
    color: #16a34a;
}
.contact-card__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-card__body strong { font-weight: 900; letter-spacing: -0.02em; }
.contact-card__body span { color: rgba(120, 113, 108, 0.95); font-weight: 650; font-size: 0.92rem; }
.contact-card__go {
    margin-left: auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(2, 6, 23, 0.04);
    border: 1px solid rgba(28, 25, 23, 0.07);
    color: rgba(68, 64, 60, 0.95);
    flex-shrink: 0;
}
.contact-help {
    padding: 0 0 clamp(2.5rem, 6vw, 4.25rem);
    background: linear-gradient(180deg, var(--surface) 0%, #ffffff 100%);
}
.contact-help__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(180, 83, 9, 0.16);
    box-shadow: 0 16px 44px rgba(180, 83, 9, 0.08);
}
.contact-help__inner strong { display: block; font-weight: 900; margin-bottom: 4px; }
.contact-help__inner span { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
@media (max-width: 720px) {
    .contact-help__inner { flex-direction: column; align-items: stretch; text-align: left; }
    .contact-help__inner .btn { width: 100%; justify-content: center; }
}

section.about-pillars {
    padding: clamp(1.25rem, 3vw, 2rem) 0 clamp(2.5rem, 6vw, 4rem);
}
section.about-pillars .promo-cards {
    margin-top: 0;
}

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

input, select, textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    font: inherit;
    background: var(--surface);
    color: var(--text);
    transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(180,83,9,.14);
}

.hero.hero-modern {
    padding: 0;
}
section { padding: calc(var(--space-5) * 1.2) 0; }
section + section { padding-top: calc(var(--space-5) * 0.8); }

.promo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-top: calc(var(--space-5) * -1.5);
    position: relative;
    z-index: 5;
}
.promo-card {
    background: var(--glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: var(--space-5);
    text-align: center;
    transition: transform .4s var(--ease-spring), box-shadow .4s var(--ease-out), border-color .3s;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 4px 24px rgba(0,0,0,.15);
}
.promo-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.promo-card:nth-child(1).visible { transition-delay: 0s; }
.promo-card:nth-child(2).visible { transition-delay: .1s; }
.promo-card:nth-child(3).visible { transition-delay: .2s; }
.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(180,83,9,.22);
}
.promo-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-3);
    border-radius: 16px;
    background: var(--gradient);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: #ffffff;
    transition: transform .3s var(--ease-spring);
}
.promo-card:hover .promo-icon { transform: scale(1.1) rotate(-5deg); }
.promo-card h3 {
    margin: 0 0 var(--space-2);
    font-size: 1.2rem;
    font-weight: 700;
}
.promo-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: .95rem;
    line-height: 1.55;
}

.cta-section {
    text-align: center;
    padding: var(--space-5) 0 var(--space-2);
}
.btn-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1.1rem;
}
.btn-large i { font-size: 1.2rem; }

.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0 0 var(--space-4);
    text-align: center;
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-4);
}
.card {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .4s var(--ease-spring), box-shadow .4s var(--ease-out), border-color .4s, opacity .5s var(--ease-out);
    opacity: 0;
    transform: translateY(24px);
}
.card.visible {
    opacity: 1;
    transform: translateY(0);
}
.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(180,83,9,.22);
}
.card:hover { box-shadow: var(--shadow-hover); }
.card-media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}
.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease-out);
}
.card:hover .card-media img { transform: scale(1.1); }
.fav-btn {
    position: absolute;
    right: var(--space-3);
    top: var(--space-3);
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 1rem;
    transition: transform .25s var(--ease-spring), background .25s;
}
.fav-btn:hover { transform: scale(1.12); background: rgba(0,0,0,.7); }
.card-rating {
    position: absolute;
    left: var(--space-3);
    top: var(--space-3);
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(8px);
    color: #fbbf24;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.stock-tag {
    position: absolute;
    left: var(--space-3);
    bottom: var(--space-3);
    background: var(--gradient-warm);
    color: #fff;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    padding: 8px 14px;
    box-shadow: 0 2px 12px rgba(245,158,11,.4);
}
.card-body { padding: var(--space-4); }
.card-specs {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-2);
    font-size: .88rem;
    color: var(--muted);
}
.card-specs span { display: inline-flex; align-items: center; gap: 6px; }
.card-specs i { color: var(--primary); font-size: .85rem; }
.card h3 { font-size: var(--title-size); margin: var(--space-1) 0; font-weight: 700; line-height: 1.3; }
.card-desc { color: var(--text-soft); font-size: .92rem; margin: var(--space-2) 0; line-height: 1.5; }
.card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin: var(--space-3) 0;
}
.amenity-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(180,83,9,.10);
    color: var(--primary-dim);
    font-size: .8rem;
    font-weight: 600;
    border: 1px solid rgba(180,83,9,.16);
}
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-3);
    padding-top: var(--space-3);
    border-top: 1px solid var(--glass-border);
}
.card-price-wrap { display: flex; align-items: baseline; gap: 4px; }
.card-footer .price { font-weight: 700; font-size: 1.15rem; color: var(--primary); }
.card-footer .price small { font-weight: 500; color: var(--muted); font-size: .85rem; }
.card-price-info {
    margin-top: var(--space-3);
    padding: var(--space-2) var(--space-3);
    background: rgba(180,83,9,.06);
    border: 1px solid rgba(180,83,9,.14);
    border-radius: var(--radius-sm);
}
.card-price-note {
    font-size: .85rem;
    color: var(--text-soft);
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-price-note i { color: var(--primary); font-size: .9rem; }
.card-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-3);
    padding-top: var(--space-3);
    border-top: 1px solid var(--glass-border);
}
.card-cta-detail {
    flex: 1;
    min-width: 140px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.card-cta-group {
    display: flex;
    gap: var(--space-2);
}
.card-cta-whatsapp,
.card-cta-call {
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    border-radius: 12px;
    flex-shrink: 0;
}
.card-cta-whatsapp {
    background: #25D366;
    color: #fff;
}
.card-cta-whatsapp:hover { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
.card-cta-call {
    background: var(--gradient);
    color: #0f0f12;
}
.card-cta-call:hover { box-shadow: 0 8px 22px rgba(180,83,9,.20); }
.card-cta-modern {
    display: flex;
    gap: var(--space-2);
    flex: 1;
    min-width: 0;
}
.card-cta-call-modern,
.card-cta-whatsapp-modern {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: .9rem;
    font-weight: 600;
    border-radius: 12px;
    white-space: nowrap;
}
.card-cta-call-modern {
    background: var(--gradient);
    color: #0f0f12;
}
.card-cta-call-modern:hover { box-shadow: 0 8px 22px rgba(180,83,9,.20); }
.card-cta-whatsapp-modern {
    background: #25D366;
    color: #fff;
}
.card-cta-whatsapp-modern:hover { box-shadow: 0 4px 20px rgba(37,211,102,.4); }

/* Magnovia-style listing cards */
.card-magnovia {
    background: var(--surface);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.04);
    border: 1px solid var(--glass-border);
}
.card-magnovia { box-shadow: 0 8px 30px rgba(2,6,23,.08); }
.card-magnovia:hover {
    box-shadow: 0 12px 40px rgba(2,6,23,.10), 0 0 0 1px rgba(180,83,9,.12);
    transform: translateY(-8px);
}
.card-magnovia .card-media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}
.card-magnovia .card-media-link {
    display: block;
    height: 100%;
}
.card-magnovia .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease-out);
}
.card-magnovia:hover .card-media img { transform: scale(1.08); }
.card-badge-owner {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 12px rgba(249,115,22,.4);
}
.card-magnovia .card-body { padding: var(--space-4); }
.card-specs-magnovia {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-2);
    font-size: .85rem;
    color: var(--primary);
}
.card-specs-magnovia i { color: var(--primary); margin-right: 4px; }
.card-title-magnovia {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    margin: var(--space-1) 0 var(--space-2);
    line-height: 1.3;
}
.card-title-magnovia { color: var(--text); }
.card-amenities-magnovia {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin: var(--space-3) 0;
}
.amenity-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    border: 1px solid rgba(180,83,9,.20);
    background: rgba(180,83,9,.06);
    color: var(--primary-dim);
}
.amenity-chip { border-color: rgba(180,83,9,.20); background: rgba(180,83,9,.06); color: var(--primary-dim); }
.card-price-info-magnovia {
    margin-top: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: rgba(180,83,9,.04);
    border: 1px solid rgba(180,83,9,.12);
    border-radius: 12px;
}
.card-price-info-magnovia .card-price-note { font-size: .82rem; }
.card-actions-magnovia {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-top: var(--space-4);
    padding-top: var(--space-3);
    border-top: 1px solid var(--glass-border);
}
.card-cta-main {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .2s, box-shadow .2s;
}
.card-cta-main:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 24px rgba(249,115,22,.4);
}
.card-cta-secondary {
    display: flex;
    gap: var(--space-2);
}
.card-cta-wa,
.card-cta-phone {
    flex: 1;
    justify-content: center;
    padding: 10px 14px;
    font-size: .9rem;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.card-cta-wa {
    background: #25D366;
    color: #fff;
    border: none;
}
.card-cta-wa:hover { box-shadow: 0 4px 16px rgba(37,211,102,.4); }
.card-cta-phone {
    background: transparent;
    border: 2px solid rgba(180,83,9,.28);
    color: var(--primary-dim);
}
.card-cta-phone { border-color: rgba(180,83,9,.28); color: var(--primary-dim); }
.card-cta-phone:hover { background: rgba(180,83,9,.06); }

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: .9rem;
    white-space: nowrap;
}
.card-cta i { font-size: .8rem; transition: transform .3s var(--ease-out); }
.card:hover .card-cta i { transform: translateX(4px); }
.muted { color: var(--muted); font-size: .92rem; }

.pagination { display: flex; justify-content: center; gap: var(--space-2); margin-top: var(--space-4); flex-wrap: wrap; }
.pagination a {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: all .2s var(--ease-out);
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination a.active { background: var(--gradient); color: #0f0f12; border-color: transparent; }
.pagination.hidden { display: none; }

/* ========== BUNGALOV DETAY (stay-*) ========== */
.stay-page {
    background: var(--bg-soft);
    color: var(--text);
}
.stay-detail-head {
    padding: clamp(0.85rem, 2vw, 1.1rem) 0 0;
}
.stay-detail-head .stay-crumb {
    margin: 0;
}
.stay-gallery-section {
    padding: clamp(0.75rem, 2vw, 1.25rem) 0 clamp(1.25rem, 3vw, 1.75rem);
    background: var(--surface);
    border-bottom: 1px solid var(--glass-border);
}
.stay-gallery-wrap {
    max-width: min(1180px, 92%);
    margin: 0 auto;
}
.stay-gallery-modern {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vw, 16px);
}
.stay-gallery-stage {
    position: relative;
    border-radius: clamp(16px, 2.5vw, 22px);
    overflow: hidden;
    background: #0f172a;
    aspect-ratio: 16 / 10;
    max-height: min(78vh, 680px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.06);
}
.stay-gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: opacity 0.35s var(--ease-out);
}
.stay-gallery-counter {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #f8fafc;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.stay-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(15, 23, 42, 0.45);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    z-index: 2;
}
.stay-gallery-arrow:hover {
    background: rgba(15, 23, 42, 0.65);
    border-color: rgba(251, 191, 36, 0.55);
}
.stay-gallery-arrow:focus-visible {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}
.stay-gallery-arrow--prev { left: 12px; }
.stay-gallery-arrow--next { right: 12px; }
.stay-gallery-thumbs-outer {
    padding: 0 2px;
}
.stay-gallery-thumbs-hint {
    margin: 0 0 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.02em;
}
.stay-gallery-thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 4px 10px;
    margin: 0 -4px;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(120, 113, 108, 0.45) transparent;
}
.stay-gallery-thumbs::-webkit-scrollbar {
    height: 5px;
}
.stay-gallery-thumbs::-webkit-scrollbar-thumb {
    background: rgba(120, 113, 108, 0.35);
    border-radius: 999px;
}
.stay-gallery-thumb {
    flex: 0 0 auto;
    width: 76px;
    height: 52px;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    scroll-snap-align: start;
    background: var(--bg-soft);
    opacity: 0.85;
    transition: opacity 0.2s, border-color 0.2s, transform 0.2s var(--ease-out), box-shadow 0.2s;
}
.stay-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.stay-gallery-thumb:hover {
    opacity: 1;
    transform: translateY(-1px);
}
.stay-gallery-thumb.is-active {
    opacity: 1;
    border-color: #d97706;
    box-shadow: 0 6px 18px rgba(180, 83, 9, 0.22);
}
.stay-gallery-thumb:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
.stay-summary {
    padding: clamp(1.25rem, 3vw, 1.75rem) 0;
    background: transparent;
    border-bottom: none;
}
.stay-summary__inner {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(14px, 2.5vw, 18px);
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(28, 25, 23, 0.08);
    box-shadow: 0 14px 44px rgba(2, 6, 23, 0.06);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
}
.stay-hero__price-tag { margin-bottom: 4px; }
.stay-hero__loc { margin-top: 10px; }
.stay-crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    font-size: 0.82rem;
    margin: 0 0 1.25rem;
    color: var(--muted);
}
.stay-crumb a {
    color: var(--primary);
    font-weight: 700;
}
.stay-crumb a:hover {
    color: var(--primary-dim);
}
.stay-crumb__sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.55;
}
.stay-crumb__here {
    color: var(--text);
    font-weight: 700;
    max-width: 100%;
}
.stay-hero__price-tag {
    margin: 0 0 10px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--primary-dim);
}
.stay-hero__price-tag small {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
}
.stay-hero__title {
    margin: 0;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: clamp(1.75rem, 2.5vw + 1rem, 2.5rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--text);
}
.stay-hero__loc {
    margin: 14px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-soft);
    font-size: 1rem;
}
.stay-hero__loc i {
    color: var(--primary);
}
.stay-chips {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
@media (max-width: 900px) {
    .stay-chips { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
    .stay-chips { grid-template-columns: 1fr; }
}
.stay-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 10px 12px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(28, 25, 23, 0.08);
    color: #1c1917;
    box-shadow: 0 10px 28px rgba(2, 6, 23, 0.06);
    transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out), border-color .18s;
}
.stay-chip {
    width: 100%;
    justify-content: flex-start;
}
.stay-chip i {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 0.92rem;
    background: rgba(180, 83, 9, 0.10);
    border: 1px solid rgba(180, 83, 9, 0.16);
    color: rgba(180, 83, 9, 0.95);
}
.stay-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(180, 83, 9, 0.22);
    box-shadow: 0 16px 44px rgba(2, 6, 23, 0.08);
}
.stay-chip:focus-within {
    outline: 2px solid rgba(217, 119, 6, 0.35);
    outline-offset: 2px;
}
.stay-hero__actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.stay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.92rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.22s var(--ease-spring), box-shadow 0.22s;
}
.stay-btn--gold {
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 40%, #d97706 100%);
    color: #0f172a;
    box-shadow: 0 10px 28px rgba(180, 83, 9, 0.28);
}
.stay-btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(180, 83, 9, 0.32);
}
.stay-btn--wa {
    background: #25d366;
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}
.stay-btn--wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.45);
}
.stay-btn--dark {
    background: #0f172a;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.stay-btn--dark:hover {
    background: #1e293b;
    transform: translateY(-1px);
}
.stay-btn--ghost {
    background: rgba(15, 23, 42, 0.05);
    color: var(--text) !important;
    border: 1px solid var(--glass-border);
    font-weight: 700;
}
.stay-btn--ghost:hover {
    border-color: var(--primary);
    color: var(--primary-dim) !important;
}
.stay-btn--block {
    width: 100%;
}
.stay-shell {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}
.stay-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: clamp(1.5rem, 3vw, 2.25rem);
    align-items: start;
}
.stay-aside {
    order: 2;
}
.stay-main {
    order: 1;
    min-width: 0;
}
.stay-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
    border: 1px solid rgba(28, 25, 23, 0.08);
    border-radius: 22px;
    padding: 20px 18px 18px;
    box-shadow: 0 18px 50px rgba(2, 6, 23, 0.06);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.stay-card.visible {
    opacity: 1;
    transform: none;
}
.stay-card--book {
    position: sticky;
    top: 88px;
    border-top: 0;
}
.stay-card__head {
    margin-bottom: 1.25rem;
}
.stay-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(28, 25, 23, 0.08);
    background: rgba(255, 255, 255, 0.75);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(120, 113, 108, 0.95);
}
.stay-card__title {
    margin: 10px 0 0;
    font-size: 1.18rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}
.stay-card__lead {
    margin: 10px 0 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(120, 113, 108, 0.98);
}
.stay-host {
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--bg-soft);
    border: 1px solid var(--glass-border);
    margin-bottom: 16px;
}
.stay-host__label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}
.stay-host__name {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    font-weight: 700;
    font-size: 1rem;
}
.stay-notice {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.03);
    border: 1px solid rgba(28, 25, 23, 0.06);
    font-size: 0.88rem;
    color: var(--text-soft);
    margin-bottom: 16px;
}
.stay-notice i {
    color: rgba(120, 113, 108, 0.9);
    margin-top: 2px;
}
.stay-card__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.stay-card__actions .stay-btn {
    justify-content: center;
}
.stay-mini-trust {
    display: none;
}
.stay-mini-trust i {
    display: none;
}
.stay-side-block {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}
.stay-side-block__h {
    margin: 0 0 10px;
    font-size: 0.95rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}
.stay-side-block__h i {
    color: var(--primary);
}
.stay-side-block__p {
    margin: 0 0 10px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-soft);
}
.stay-side-block--address .stay-side-block__p.stay-address-lines {
    font-weight: 700;
    color: #1c1917;
    line-height: 1.65;
}
.stay-address-note {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.55;
    color: rgba(120, 113, 108, 0.95);
    font-style: normal;
}
.stay-link-arrow {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-dim);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.stay-link-arrow:hover {
    color: var(--primary);
}
.stay-date-list {
    display: none;
}
.stay-date-list li {
    display: none;
}
.stay-date-list li:last-child {
    display: none;
}
.stay-muted-row {
    font-size: 0.88rem;
    color: var(--text-soft);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.stay-muted-row i {
    color: var(--primary);
}
.stay-block {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 16px;
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.stay-block.visible {
    opacity: 1;
    transform: none;
}
.stay-block__h {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-dim);
    padding: 0 0 0 14px;
    border-left: 3px solid #d97706;
    line-height: 1.35;
}
.stay-block__sub {
    margin: 0 0 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-soft);
}
.stay-prose {
    font-size: 1.02rem;
    line-height: 1.78;
    color: var(--text-soft);
}
.stay-accordion {
    margin-top: 14px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 10px 28px rgba(2, 6, 23, 0.05);
    overflow: hidden;
}
.stay-accordion > summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 800;
    color: var(--text);
}
.stay-accordion > summary::-webkit-details-marker { display: none; }
.stay-accordion > summary::after {
    content: '▾';
    font-size: 0.95rem;
    color: var(--primary-dim);
    transition: transform 0.18s var(--ease-out);
}
.stay-accordion[open] > summary::after { transform: rotate(180deg); }
.stay-accordion > summary span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.stay-accordion > summary:focus-visible {
    outline: 2px solid rgba(217, 119, 6, 0.45);
    outline-offset: 2px;
}
.stay-accordion__body {
    padding: 0 16px 14px;
}
.stay-accordion__body .stay-bullet-list {
    margin-top: 8px;
}
.stay-block--minimal .stay-accordion {
    box-shadow: none;
    background: #ffffff;
}
.stay-block--minimal .stay-accordion + .stay-accordion {
    margin-top: 10px;
}
.stay-accordion__more {
    margin-top: 12px;
}
.stay-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: rgba(15, 23, 42, 0.04);
    color: var(--text);
    font-weight: 800;
    cursor: pointer;
}
.stay-more-btn:hover { border-color: rgba(217, 119, 6, 0.35); background: rgba(217, 119, 6, 0.06); }
.stay-more-content { margin-top: 10px; }
.stay-feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.stay-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--bg-soft);
    border: 1px solid var(--glass-border);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
}
.stay-feat i {
    color: var(--primary-dim);
    font-size: 1.15rem;
}
.stay-bullet-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.stay-bullet-list li {
    position: relative;
    padding: 10px 0 10px 1.35rem;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.55;
}
.stay-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.15em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient);
}
.stay-bullet-list li:last-child {
    border-bottom: none;
}
.stay-reviews {
    display: grid;
    gap: 14px;
}
.stay-review {
    padding: 18px;
    border-radius: 16px;
    background: var(--bg-soft);
    border: 1px solid var(--glass-border);
}
.stay-review__stars {
    color: #fbbf24;
    font-size: 0.85rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
}
.stay-review__text {
    margin: 0 0 12px;
    line-height: 1.65;
    color: var(--text-soft);
}
.stay-review__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
}
.stay-review__meta time {
    color: var(--muted);
}
.stay-back-strip {
    padding: 24px 0 48px;
    text-align: center;
}
.stay-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--primary-dim);
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(180, 83, 9, 0.28);
    background: rgba(180, 83, 9, 0.06);
}
.stay-back-link:hover {
    background: rgba(180, 83, 9, 0.12);
    color: var(--text);
}
.stay-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px calc(14px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -12px 40px rgba(2, 6, 23, 0.12);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.stay-mobile-bar__hint {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-soft);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.stay-mobile-bar__hint i {
    color: var(--primary);
    flex-shrink: 0;
}
.stay-mobile-bar__cta {
    flex-shrink: 0;
    padding: 12px 18px;
    font-size: 0.88rem;
}
@media (max-width: 1024px) {
    .stay-grid {
        grid-template-columns: 1fr;
    }
    .stay-aside {
        order: 1;
    }
    .stay-main {
        order: 2;
    }
    .stay-card--book {
        position: static;
    }
}
@media (max-width: 640px) {
    .stay-gallery-thumb {
        width: 68px;
        height: 46px;
    }
    .stay-gallery-arrow {
        width: 38px;
        height: 38px;
    }
    .stay-gallery-arrow--prev { left: 8px; }
    .stay-gallery-arrow--next { right: 8px; }
    .stay-feat-grid {
        grid-template-columns: 1fr;
    }
    .stay-hero__actions {
        flex-direction: column;
    }
    .stay-btn {
        width: 100%;
    }
}
@media (max-width: 980px) {
    .stay-mobile-bar {
        display: flex;
    }
    body:has(.stay-mobile-bar) .footer {
        padding-bottom: 88px;
    }
    body:has(.stay-mobile-bar) .floating-actions {
        bottom: 88px;
    }
    body:has(.stay-mobile-bar) .mobile-cta-bar {
        display: none;
    }
}

/* ========== SSS (Sık Sorulan Sorular) ========== */
.sss-section { padding: var(--space-5) 0; max-width: 720px; margin: 0 auto; }
.sss-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    margin: 0 0 var(--space-2);
    display: flex;
    align-items: center;
    gap: 12px;
}
.sss-title i { color: var(--primary); }
.sss-intro { color: var(--text-soft); margin: 0 0 var(--space-5); font-size: 1.05rem; }
.faq-list { display: flex; flex-direction: column; gap: var(--space-2); }
.faq-item {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .25s;
}
.faq-item:hover { border-color: rgba(180,83,9,.16); }
.faq-item[open] .faq-question { color: var(--primary); }
.faq-question {
    padding: var(--space-4);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: .85rem;
    color: var(--muted);
    transition: transform .3s var(--ease-out);
}
.faq-item[open] .faq-question::after { transform: rotate(180deg); }
.faq-answer {
    padding: 0 var(--space-4) var(--space-4);
    color: var(--text-soft);
    line-height: 1.7;
}
.faq-placeholder {
    background: var(--surface);
    border: 1px dashed var(--glass-border);
    border-radius: var(--radius);
    padding: var(--space-5);
    color: var(--text-soft);
}
.faq-placeholder ul { margin: var(--space-3) 0 0; padding-left: 1.2rem; }

.detail-layout { display: grid; grid-template-columns: 2fr 1fr; gap: var(--space-5); }
.slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    border-radius: var(--radius);
    overflow: hidden;
}
.slider img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: transform .4s var(--ease-out);
}
.slider img:hover { transform: scale(1.03); }
.panel {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: var(--space-4);
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}
.feature-list { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.badge {
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: .85rem;
    background: rgba(255,255,255,.04);
    transition: background .2s, border-color .2s;
}
.badge:hover { background: rgba(255,255,255,.08); border-color: var(--primary); }
.trust-box {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: var(--space-3);
    margin: var(--space-3) 0;
    background: rgba(255,255,255,.02);
}
.trust-box p { margin: var(--space-2) 0; font-size: .92rem; }

/* ========== FOOTER — yumşaq kontrast, göz yormayan “stone” xətti ========== */
.footer {
    margin-top: clamp(2rem, 4vw, 3rem);
    color: #292524;
    border-top: 1px solid rgba(28, 25, 23, 0.07);
    box-shadow: none;
    background:
        radial-gradient(900px 360px at 20% 0%, rgba(217, 119, 6, 0.12), transparent 60%),
        radial-gradient(820px 360px at 85% 12%, rgba(37, 211, 102, 0.10), transparent 60%),
        linear-gradient(180deg, #fbfaf8 0%, #f5f4f2 55%, #f1f0ee 100%);
}

/* Footer markup (footer.php) — modern 2026 layout */
.footer-top {
    padding: clamp(1.5rem, 3vw, 2rem) 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: clamp(1rem, 2.5vw, 1.75rem);
    align-items: start;
}
.footer-col {
    justify-self: end;
    text-align: right;
}
@media (max-width: 960px) {
    .footer-col { justify-self: start; text-align: left; }
}
@media (max-width: 960px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
}
@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand { max-width: 26rem; }
.footer-col h4 {
    margin: 0 0 12px;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(120, 113, 108, 0.95);
    font-weight: 700;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(68, 64, 60, 0.95);
    font-size: 0.92rem;
    font-weight: 550;
    text-decoration: none;
    transition: color .18s;
}
.footer-col a:hover { color: #1c1917; }
.footer-col i { color: rgba(120, 113, 108, 0.85); }
.footer-tagline {
    color: rgba(120, 113, 108, 0.95);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 10px 0 14px;
}
.footer-social a {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(28, 25, 23, 0.08);
}
.footer-bottom {
    background: rgba(255, 255, 255, 0.35);
    border-top: 1px solid rgba(28, 25, 23, 0.07);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 14px 0;
}
@media (max-width: 640px) {
    .footer-bottom-inner { justify-content: center; text-align: center; }
}
.footer-quick {
    padding: clamp(1.1rem, 2.5vw, 1.45rem) 0;
    border-bottom: 1px solid rgba(28, 25, 23, 0.06);
    background: transparent;
}
.footer-quick-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3) var(--space-4);
}
.footer-quick-heading {
    flex: 1 1 16rem;
    min-width: min(100%, 260px);
}
.footer-quick-kicker {
    display: block;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #78716c;
    margin: 0 0 6px;
}
.footer-quick-hint {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #78716c;
    max-width: 28rem;
    font-weight: 400;
}
.footer-quick-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 1 1 auto;
}
.footer-quick-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #44403c;
    background: #fffcf8;
    border: 1px solid rgba(28, 25, 23, 0.09);
    box-shadow: none;
    transition: background 0.2s, border-color 0.2s;
}
.footer-quick-chip i { font-size: 0.92rem; opacity: 0.65; color: #57534e; }
.footer-quick-chip:hover {
    background: #ffffff;
    border-color: rgba(28, 25, 23, 0.13);
    color: #292524;
    transform: none;
    box-shadow: none;
}
.footer-quick-chip:focus-visible {
    outline: 2px solid #a8a29e;
    outline-offset: 2px;
}
.footer-quick-chip--wa {
    background: #f0fdf4;
    border-color: rgba(22, 163, 74, 0.22);
    color: #166534;
}
.footer-quick-chip--wa i { color: #22c55e; opacity: 0.85; }
.footer-quick-chip--wa:hover {
    background: #ecfdf5;
    border-color: rgba(22, 163, 74, 0.35);
    color: #14532d;
}

.footer-trust {
    padding: calc(var(--space-4) - 4px) 0;
    border-bottom: 1px solid rgba(28, 25, 23, 0.06);
    background: transparent;
}
.footer-trust-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}
.footer-trust-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}
.footer-trust-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #fffcf8;
    border: 1px solid rgba(28, 25, 23, 0.08);
    color: #57534e;
    font-size: 0.95rem;
}
.footer-trust-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #292524;
    margin-bottom: 2px;
}
.footer-trust-item span:last-child {
    font-size: 0.82rem;
    color: #78716c;
    line-height: 1.45;
    font-weight: 400;
}

.footer-main {
    padding: clamp(2rem, 4vw, 2.75rem) 0;
    background: transparent;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: var(--space-5);
    align-items: start;
}
.footer-brand { padding-right: var(--space-4); max-width: 22rem; }
.footer-logo {
    font-size: 1.35rem;
    font-weight: 700;
    font-family: "Manrope", system-ui, sans-serif;
    letter-spacing: -0.02em;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: #292524;
    display: inline-block;
    margin-bottom: var(--space-3);
}
.footer-logo span:not(.footer-logo-text) { color: #292524; -webkit-text-fill-color: unset; }
.footer-logo .footer-logo-text { color: #292524; -webkit-text-fill-color: unset; }
.footer-logo-link:has(.footer-logo-img) { background: none; -webkit-background-clip: unset; -webkit-text-fill-color: unset; }
.footer-logo-img {
    max-height: 46px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    margin-bottom: var(--space-3);
    filter: brightness(1.08);
}
@media (max-width: 640px) {
    .footer-logo-img { max-height: 36px; max-width: 150px; }
}
.footer-tagline {
    color: #78716c;
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0 0 var(--space-4);
    font-weight: 400;
}
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #fffcf8;
    border: 1px solid rgba(28, 25, 23, 0.08);
    display: grid;
    place-items: center;
    font-size: 1rem;
    color: #57534e;
    transition: background .2s, border-color .2s, color .2s;
}
.footer-social a:hover {
    background: #ffffff;
    border-color: rgba(28, 25, 23, 0.12);
    color: #292524;
    transform: none;
}
.footer-col-title {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 var(--space-3);
    color: #78716c;
}
.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-col li { margin-bottom: 11px; }
.footer-col li:last-child { margin-bottom: 0; }
.footer-col a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #57534e;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color .2s;
}
.footer-col a:hover { color: #292524; }
.footer-contact-list a {
    align-items: flex-start;
    word-break: break-word;
}
.footer-contact-list i {
    margin-top: 3px;
    color: #78716c;
    flex-shrink: 0;
    width: 1.1em;
    text-align: center;
}
.footer-bottom {
    padding: var(--space-3) 0 calc(var(--space-3) + 6px);
    border-top: 1px solid rgba(28, 25, 23, 0.07);
    background: rgba(255, 255, 255, 0.35);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-3);
}
.footer-copy {
    margin: 0;
    color: #a8a29e;
    font-size: 0.82rem;
}
.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}
.footer-legal a {
    color: #78716c;
    font-size: 0.82rem;
    font-weight: 500;
}
.footer-legal a:hover { color: #44403c; }
.footer-legal-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #d6d3d1;
}

@media (max-width: 960px) {
    .footer-quick-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .footer-quick-heading { max-width: none; }
    .footer-quick-hint { margin: 0 auto; max-width: 36rem; }
    .footer-quick-actions { justify-content: center; }
    .footer-trust-inner {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    .footer-trust-item { justify-content: center; text-align: left; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
        padding-right: 0;
        text-align: center;
    }
    .footer-social { justify-content: center; }
}
@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-trust-item { flex-direction: column; align-items: center; text-align: center; }
    .footer-trust-icon { margin-bottom: 2px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-quick-chip { flex: 1 1 auto; justify-content: center; min-width: calc(50% - 6px); }
    .footer-contact-list a { justify-content: center; text-align: left; }
}

.floating-actions {
    position: fixed;
    right: var(--space-4);
    bottom: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    z-index: 999;
}
.floating-actions a {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: var(--shadow);
    font-size: 1.2rem;
    transition: transform .25s var(--ease-spring), box-shadow .25s;
}
.floating-actions a:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.floating-call { background: var(--surface); border: 1px solid var(--glass-border); }
.floating-whatsapp { background: #25D366; }

.mobile-cta-bar { display: none; }

.admin-layout { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--surface); color: var(--text); padding: var(--space-4); border-right: 1px solid var(--glass-border); }
.admin-sidebar a { display: block; padding: var(--space-2) 0; color: var(--text-soft); transition: color .2s; }
.admin-sidebar a:hover { color: var(--primary); }
.admin-main { padding: var(--space-4); }
.table-wrap { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); overflow-x: auto; border: 1px solid var(--glass-border); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: var(--space-3); border-bottom: 1px solid var(--glass-border); text-align: left; vertical-align: top; }
th { color: var(--text-soft); font-weight: 600; font-size: .9rem; }

.alert { margin: var(--space-3) 0; padding: var(--space-3); border-radius: var(--radius-sm); }
.alert.success { background: rgba(180,83,9,.08); color: var(--primary-dim); border: 1px solid rgba(180,83,9,.14); }
.alert.error { background: rgba(239,68,68,.1); color: #f87171; border: 1px solid rgba(239,68,68,.2); }

.gallery-grid { columns: 3 280px; column-gap: var(--space-3); }
.gallery-grid img {
    width: 100%;
    margin-bottom: var(--space-3);
    border-radius: var(--radius);
    cursor: zoom-in;
    transition: transform .3s var(--ease-out);
}
.gallery-grid img:hover { transform: scale(1.02); }
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    background: rgba(0,0,0,.9);
    backdrop-filter: blur(8px);
    z-index: 70;
}
.lightbox img { width: min(920px, 92%); border-radius: var(--radius); animation: fadeUp .3s var(--ease-out); }
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background: var(--glass);
    backdrop-filter: blur(12px);
    color: var(--text);
    transition: transform .2s var(--ease-spring), background .2s;
}
.nav-btn:hover { transform: translateY(-50%) scale(1.1); background: var(--surface); }
.nav-btn.prev { left: 3%; }
.nav-btn.next { right: 3%; }
.thumb-strip {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-2);
    max-width: min(920px, 90%);
    overflow-x: auto;
    padding-bottom: var(--space-1);
}
.thumb-strip img {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    opacity: .8;
    cursor: pointer;
    transition: all .2s;
}
.thumb-strip img:hover, .thumb-strip img.active { border-color: var(--primary); opacity: 1; }

.comment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); margin-top: var(--space-3); }
.comment-card {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: var(--space-4);
    transition: border-color .2s;
}
.comment-card:hover { border-color: rgba(180,83,9,.14); }
.comment-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-2); }

.skeleton-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    animation: skeletonPulse 1.5s ease-in-out infinite;
}
@keyframes skeletonPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .85; }
}
.skeleton-media, .skeleton-line {
    background: linear-gradient(110deg, var(--bg-soft) 8%, var(--surface) 18%, var(--bg-soft) 33%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}
.skeleton-media { aspect-ratio: 4/3; }
.skeleton-body { padding: var(--space-4); }
.skeleton-line { height: 12px; border-radius: 8px; margin-bottom: var(--space-2); }
.skeleton-line.lg { width: 80%; height: 16px; }
.skeleton-line.md { width: 60%; }
.skeleton-line.sm { width: 40%; }
@keyframes shimmer { to { background-position-x: -200%; } }

@media (max-width: 980px) {
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-stats { gap: var(--space-4); }
    .promo-cards { grid-template-columns: 1fr; margin-top: calc(var(--space-5) * -1); }
    .list-grid { grid-template-columns: 1fr 1fr; }
    .detail-layout { grid-template-columns: 1fr; }
    .panel { position: static; }
    .admin-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .list-grid { grid-template-columns: 1fr; }
    .promo-cards { grid-template-columns: 1fr; gap: var(--space-3); }
    .comment-grid { grid-template-columns: 1fr; }
    .trust-badges { gap: var(--space-2); }
    .floating-actions a { width: 48px; height: 48px; }
    .card-footer { flex-direction: column; align-items: stretch; gap: var(--space-2); }
    .card-actions { flex-direction: column; }
    .card-cta-detail { width: 100%; }
    .card-cta-group { width: 100%; justify-content: center; }
    .card-magnovia .card-body { padding: var(--space-3); }
    .card-magnovia .card-title-magnovia { font-size: 1.2rem; }
    .card-cta { justify-content: center; }
    .card-body { padding: var(--space-3); }
    .card-desc { font-size: .88rem; }
    .mobile-cta-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: var(--surface);
        border-top: 1px solid var(--glass-border);
        box-shadow: 0 -8px 32px rgba(0,0,0,.3);
    }
    .mobile-cta-bar a {
        padding: var(--space-3) var(--space-2);
        text-align: center;
        font-weight: 700;
        font-size: .9rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 7px;
    }
    .mobile-cta-bar .cta-whatsapp { background: #25D366; color: #fff; }
    .mobile-cta-bar .cta-call { background: var(--primary); color: #0f0f12; }
    .footer { padding-bottom: 80px; }
    .floating-actions { bottom: 84px; }
}
