:root {
    --blue: #326295;
    --blue-dark: #2a5280;
    --blue-light: #3d72ad;
    --yellow: #ffe800;
    --yellow-dark: #e6d000;
    --bg: #f4f4f4;
    --white: #fff;
    --text: #333;
    --text-2: #666;
    --text-3: #999;
    --border: #e0e0e0;
    --border-dark: #ccc;
    --row-hover: #fffde7;
    --premium-bg: #fff9e6;
    --green: #25d366;
    --radius: 4px;
    --header-h: 56px;
    --subnav-h: 40px;
    --mobile-bar-h: 64px;
    --ease: .22s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
    background:var(--bg);
    color:var(--text);
    font-size:14px;
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
}
body.menu-open { overflow:hidden; }
a { text-decoration:none; color:inherit; transition:color var(--ease),background var(--ease); }
img { display:block; max-width:100%; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }

.wrap { max-width:1200px; margin:0 auto; padding:0 16px; }

/* ── TOP BAR ── */
.top-bar {
    background:#2a5280;
    color:rgba(255,255,255,.75);
    font-size:12px;
    padding:6px 0;
    display:none;
}
.top-bar .wrap { display:flex; justify-content:space-between; align-items:center; gap:12px; }
.top-bar-links { display:flex; gap:16px; }
.top-bar-links a:hover { color:var(--yellow); }

/* ── HEADER (sahibinden style) ── */
.header {
    background:var(--blue);
    position:sticky;
    top:0;
    z-index:900;
    box-shadow:0 2px 8px rgba(0,0,0,.15);
}
.header-main {
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px 0;
    min-height:var(--header-h);
}

/* Yellow logo block */
.logo-block {
    background:var(--yellow);
    padding:8px 14px;
    border-radius:var(--radius);
    flex-shrink:0;
    display:flex;
    align-items:center;
    gap:8px;
    min-width:120px;
}
.logo-block svg { color:var(--blue); flex-shrink:0; }
.logo-text { display:flex; flex-direction:column; line-height:1.15; }
.logo-name { font-size:15px; font-weight:800; color:var(--blue); letter-spacing:-.3px; }
.logo-sub { font-size:9px; font-weight:700; color:var(--blue-dark); letter-spacing:.5px; text-transform:uppercase; }

/* Header search */
.header-search {
    flex:1;
    display:flex;
    background:var(--white);
    border-radius:var(--radius);
    overflow:hidden;
    min-width:0;
    box-shadow:0 1px 4px rgba(0,0,0,.12);
}
.header-search select {
    border:none;
    border-right:1px solid var(--border);
    padding:0 10px;
    font-size:13px;
    font-weight:600;
    color:var(--text);
    background:#f9f9f9;
    cursor:pointer;
    outline:none;
    max-width:130px;
    flex-shrink:0;
}
.header-search input {
    flex:1;
    border:none;
    padding:11px 14px;
    font-size:14px;
    outline:none;
    min-width:0;
}
.header-search button {
    background:var(--yellow);
    color:var(--blue-dark);
    font-weight:800;
    font-size:13px;
    padding:0 20px;
    flex-shrink:0;
    transition:background var(--ease);
}
.header-search button:hover { background:var(--yellow-dark); }

.header-actions { display:flex; align-items:center; gap:8px; flex-shrink:0; }
.btn-post {
    background:var(--yellow);
    color:var(--blue-dark);
    font-weight:700;
    font-size:13px;
    padding:10px 16px;
    border-radius:var(--radius);
    white-space:nowrap;
    display:flex; align-items:center; gap:6px;
}
.btn-post:hover { background:var(--yellow-dark); }
.btn-map {
    background:rgba(255,255,255,.12);
    color:var(--white);
    font-weight:600;
    font-size:13px;
    padding:10px 14px;
    border-radius:var(--radius);
    white-space:nowrap;
    display:flex; align-items:center; gap:6px;
    border:1px solid rgba(255,255,255,.2);
}
.btn-map:hover { background:rgba(255,255,255,.2); }

/* Hamburger */
.hamburger {
    display:none;
    width:44px; height:44px;
    border-radius:var(--radius);
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.2);
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    flex-shrink:0;
    -webkit-tap-highlight-color:transparent;
}
.hamburger span {
    display:block;
    width:20px; height:2px;
    background:var(--white);
    border-radius:2px;
    transition:transform .3s ease, opacity .2s ease, width .3s ease;
}
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; width:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ── SUB NAV ── */
.subnav {
    background:var(--white);
    border-bottom:1px solid var(--border);
}
.subnav .wrap {
    display:flex;
    align-items:center;
    gap:0;
    overflow-x:auto;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
}
.subnav .wrap::-webkit-scrollbar { display:none; }
.subnav a {
    padding:10px 16px;
    font-size:13px;
    font-weight:600;
    color:var(--text-2);
    white-space:nowrap;
    border-bottom:3px solid transparent;
    flex-shrink:0;
}
.subnav a:hover { color:var(--blue); background:#f9f9f9; }
.subnav a.active { color:var(--blue); border-bottom-color:var(--yellow); background:#fafafa; }
.subnav-divider { width:1px; height:20px; background:var(--border); flex-shrink:0; }

/* ── BREADCRUMB ── */
.breadcrumb {
    background:var(--white);
    border-bottom:1px solid var(--border);
    padding:10px 0;
    font-size:12px;
    color:var(--text-3);
}
.breadcrumb a { color:var(--blue); font-weight:500; }
.breadcrumb a:hover { text-decoration:underline; }
.breadcrumb span { margin:0 6px; color:var(--border-dark); }

/* ── MAIN LAYOUT ── */
.main-layout {
    display:grid;
    grid-template-columns:240px 1fr;
    gap:16px;
    padding:16px 0 32px;
    align-items:start;
}

/* Sidebar */
.sidebar {
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius);
    overflow:hidden;
    position:sticky;
    top:calc(var(--header-h) + var(--subnav-h) + 16px);
}
.sidebar-head {
    background:var(--blue);
    color:var(--white);
    padding:12px 14px;
    font-size:13px;
    font-weight:700;
}
.sidebar-list { list-style:none; }
.sidebar-list li { border-bottom:1px solid var(--border); }
.sidebar-list li:last-child { border-bottom:none; }
.sidebar-list a {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:11px 14px;
    font-size:13px;
    font-weight:500;
    color:var(--text);
}
.sidebar-list a:hover { background:#f5f8fc; color:var(--blue); }
.sidebar-list a .cat-icon { margin-right:8px; font-size:16px; }
.sidebar-list a .arrow { color:var(--text-3); font-size:11px; }
.sidebar-map {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin:12px;
    padding:11px;
    background:var(--blue);
    color:var(--white);
    border-radius:var(--radius);
    font-size:13px;
    font-weight:700;
}
.sidebar-map:hover { background:var(--blue-dark); }
.sidebar-stats {
    padding:12px 14px;
    background:#f9f9f9;
    border-top:1px solid var(--border);
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:8px;
    text-align:center;
}
.stat-num { font-size:18px; font-weight:800; color:var(--blue); line-height:1; }
.stat-lbl { font-size:10px; color:var(--text-3); font-weight:600; margin-top:3px; text-transform:uppercase; }

/* Content area */
.content-toolbar {
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:12px 14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:12px;
    flex-wrap:wrap;
}
.content-toolbar h1 { font-size:16px; font-weight:700; color:var(--text); }
.content-toolbar .count { font-size:13px; color:var(--text-2); }
.toolbar-filters { display:flex; gap:6px; flex-wrap:wrap; }
.filter-chip {
    padding:6px 12px;
    border:1px solid var(--border);
    border-radius:20px;
    font-size:12px;
    font-weight:600;
    color:var(--text-2);
    background:var(--white);
}
.filter-chip:hover, .filter-chip.active { border-color:var(--blue); color:var(--blue); background:#f0f6ff; }

/* Listing rows (sahibinden style) */
.listing-table {
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius);
    overflow:hidden;
}
.listing-row {
    display:grid;
    grid-template-columns:140px 1fr auto;
    gap:14px;
    padding:12px 14px;
    border-bottom:1px solid var(--border);
    align-items:center;
    transition:background var(--ease);
}
.listing-row:last-child { border-bottom:none; }
.listing-row:hover { background:var(--row-hover); }
.listing-row.featured { background:var(--premium-bg); }
.listing-row.featured:hover { background:#fff8d6; }

.row-img {
    width:140px; height:95px;
    border-radius:var(--radius);
    overflow:hidden;
    background:#eee;
    flex-shrink:0;
    position:relative;
}
.row-img img { width:100%; height:100%; object-fit:cover; }
.row-badge {
    position:absolute; top:4px; left:4px;
    background:var(--blue);
    color:var(--yellow);
    font-size:9px;
    font-weight:800;
    padding:3px 6px;
    border-radius:2px;
    text-transform:uppercase;
    letter-spacing:.5px;
}
.row-badge.premium { background:#e6a800; color:#fff; }

.row-info { min-width:0; }
.row-title {
    font-size:14px;
    font-weight:600;
    color:var(--text);
    margin-bottom:4px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    line-height:1.4;
}
.row-title:hover { color:var(--blue); }
.row-meta { display:flex; flex-wrap:wrap; gap:10px; font-size:12px; color:var(--text-2); margin-bottom:4px; }
.row-meta span { display:flex; align-items:center; gap:4px; }
.row-loc { font-size:12px; color:var(--text-3); display:flex; align-items:center; gap:4px; }

.row-right { text-align:right; flex-shrink:0; min-width:110px; }
.row-price { font-size:17px; font-weight:800; color:var(--blue); line-height:1.2; }
.row-type { font-size:11px; font-weight:700; color:var(--text-3); text-transform:uppercase; margin-top:4px; }
.row-date { font-size:11px; color:var(--text-3); margin-top:4px; }

.empty-box {
    padding:60px 20px;
    text-align:center;
    color:var(--text-3);
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius);
}

/* Category cards row */
.cat-row {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
    margin-bottom:16px;
}
.cat-box {
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:16px 12px;
    text-align:center;
    transition:border-color var(--ease), box-shadow var(--ease);
}
.cat-box:hover { border-color:var(--blue); box-shadow:0 2px 8px rgba(50,98,149,.12); }
.cat-box-icon { font-size:28px; margin-bottom:8px; }
.cat-box-name { font-size:13px; font-weight:700; color:var(--text); }
.cat-box-count { font-size:11px; color:var(--text-3); margin-top:3px; }

/* Promo banner */
.promo-banner {
    background:linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border-radius:var(--radius);
    padding:20px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:16px;
    color:var(--white);
}
.promo-banner h2 { font-size:16px; font-weight:700; margin-bottom:4px; }
.promo-banner p { font-size:13px; opacity:.8; }
.promo-btn {
    background:var(--yellow);
    color:var(--blue-dark);
    font-weight:800;
    font-size:13px;
    padding:10px 20px;
    border-radius:var(--radius);
    white-space:nowrap;
    flex-shrink:0;
}
.promo-btn:hover { background:var(--yellow-dark); }

/* Footer */
.footer {
    background:#2a2a2a;
    color:rgba(255,255,255,.6);
    padding:32px 0 16px;
    margin-top:16px;
}
.footer-grid {
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:32px;
    margin-bottom:24px;
}
.footer-logo {
    background:var(--yellow);
    color:var(--blue);
    font-weight:800;
    font-size:16px;
    padding:8px 12px;
    border-radius:var(--radius);
    display:inline-block;
    margin-bottom:12px;
}
.footer p { font-size:13px; line-height:1.7; }
.footer h4 { font-size:12px; font-weight:700; color:var(--yellow); text-transform:uppercase; letter-spacing:1px; margin-bottom:12px; }
.footer ul { list-style:none; }
.footer ul li { margin-bottom:8px; }
.footer ul a { font-size:13px; color:rgba(255,255,255,.55); }
.footer ul a:hover { color:var(--white); }
.footer-bottom {
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:16px;
    font-size:12px;
    color:rgba(255,255,255,.35);
    text-align:center;
}

/* Mobile sticky bar */
.mobile-bar {
    display:none;
    position:fixed;
    bottom:0; left:0; right:0;
    z-index:800;
    background:var(--white);
    border-top:1px solid var(--border);
    box-shadow:0 -2px 12px rgba(0,0,0,.1);
    padding:8px 10px calc(8px + env(safe-area-inset-bottom,0));
}
.mobile-bar-inner {
    display:grid;
    grid-template-columns:1fr 1fr 1.4fr;
    gap:6px;
    max-width:480px;
    margin:0 auto;
}
.mob-btn {
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    gap:4px; padding:10px 6px; border-radius:var(--radius);
    font-size:11px; font-weight:700; min-height:52px;
    -webkit-tap-highlight-color:transparent;
}
.mob-btn-call { background:#f5f5f5; color:var(--text); border:1px solid var(--border); }
.mob-btn-wa { background:var(--green); color:#fff; }
.mob-btn-appt { background:var(--blue); color:var(--yellow); }

/* Desktop whatsapp */
.wa-float {
    position:fixed; bottom:24px; right:24px;
    width:52px; height:52px;
    background:var(--green);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 4px 16px rgba(37,211,102,.4);
    z-index:700;
    transition:transform var(--ease);
}
.wa-float:hover { transform:scale(1.08); }
.wa-float svg { width:26px; height:26px; color:#fff; }

/* ══════════════════════════════════
   PREMIUM MOBILE MENU
══════════════════════════════════ */
.menu-overlay {
    position:fixed; inset:0;
    z-index:2000;
    pointer-events:none;
    visibility:hidden;
}
.menu-overlay.open { pointer-events:auto; visibility:visible; }

.menu-backdrop {
    position:absolute; inset:0;
    background:rgba(0,0,0,.55);
    opacity:0;
    transition:opacity .35s ease;
    backdrop-filter:blur(2px);
    -webkit-backdrop-filter:blur(2px);
}
.menu-overlay.open .menu-backdrop { opacity:1; }

.menu-panel {
    position:absolute;
    top:0; right:0;
    width:min(340px, 92vw);
    height:100%;
    background:var(--white);
    display:flex;
    flex-direction:column;
    transform:translateX(100%);
    transition:transform .38s cubic-bezier(.4,0,.2,1);
    box-shadow:-8px 0 40px rgba(0,0,0,.2);
    overflow:hidden;
}
.menu-overlay.open .menu-panel { transform:translateX(0); }

/* Menu header */
.menu-header {
    background:var(--blue);
    padding:16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    flex-shrink:0;
}
.menu-logo {
    background:var(--yellow);
    padding:7px 12px;
    border-radius:var(--radius);
    font-size:14px;
    font-weight:800;
    color:var(--blue);
}
.menu-close {
    width:40px; height:40px;
    border-radius:var(--radius);
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.25);
    display:flex; align-items:center; justify-content:center;
    color:var(--white);
    -webkit-tap-highlight-color:transparent;
}

/* Menu search */
.menu-search {
    padding:12px 16px;
    border-bottom:1px solid var(--border);
    flex-shrink:0;
}
.menu-search form { display:flex; gap:0; border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; }
.menu-search input {
    flex:1; border:none; padding:11px 12px;
    font-size:16px; outline:none; min-width:0;
}
.menu-search button {
    background:var(--yellow);
    color:var(--blue-dark);
    font-weight:800;
    font-size:13px;
    padding:0 14px;
    flex-shrink:0;
}

/* Menu body scroll */
.menu-body {
    flex:1;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior:contain;
}

/* Menu stats strip */
.menu-stats {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1px;
    background:var(--border);
    border-bottom:1px solid var(--border);
}
.menu-stat {
    background:var(--white);
    padding:12px 8px;
    text-align:center;
}
.menu-stat-num { font-size:20px; font-weight:800; color:var(--blue); line-height:1; }
.menu-stat-lbl { font-size:10px; color:var(--text-3); font-weight:600; margin-top:3px; }

/* Menu sections */
.menu-section { border-bottom:1px solid var(--border); }
.menu-section-title {
    padding:10px 16px 6px;
    font-size:10px;
    font-weight:800;
    letter-spacing:1.2px;
    text-transform:uppercase;
    color:var(--text-3);
    background:#fafafa;
}
.menu-link {
    display:flex;
    align-items:center;
    gap:12px;
    padding:13px 16px;
    font-size:14px;
    font-weight:600;
    color:var(--text);
    border-bottom:1px solid #f5f5f5;
    -webkit-tap-highlight-color:transparent;
}
.menu-link:last-child { border-bottom:none; }
.menu-link:active { background:#f0f6ff; }
.menu-link.active { color:var(--blue); background:#f0f6ff; }
.menu-link-icon {
    width:36px; height:36px;
    background:#f5f5f5;
    border-radius:var(--radius);
    display:flex; align-items:center; justify-content:center;
    font-size:18px;
    flex-shrink:0;
}
.menu-link.active .menu-link-icon { background:#e8f0fa; }
.menu-link-text { flex:1; }
.menu-link-badge {
    background:var(--blue);
    color:var(--white);
    font-size:11px;
    font-weight:700;
    padding:2px 8px;
    border-radius:10px;
}
.menu-link-arrow { color:var(--text-3); font-size:16px; }

/* Accordion categories */
.menu-accordion-btn {
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    padding:13px 16px;
    font-size:14px;
    font-weight:600;
    color:var(--text);
    background:var(--white);
    border-bottom:1px solid #f5f5f5;
    -webkit-tap-highlight-color:transparent;
}
.menu-accordion-btn .left { display:flex; align-items:center; gap:12px; }
.menu-accordion-btn .chevron {
    transition:transform .25s ease;
    color:var(--text-3);
}
.menu-accordion-btn.open .chevron { transform:rotate(180deg); }
.menu-accordion-body {
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
    background:#fafafa;
}
.menu-accordion-body.open { max-height:300px; }
.menu-accordion-body a {
    display:block;
    padding:11px 16px 11px 64px;
    font-size:13px;
    font-weight:500;
    color:var(--text-2);
    border-bottom:1px solid #f0f0f0;
}
.menu-accordion-body a:active { background:#e8f0fa; color:var(--blue); }

/* Menu footer CTAs */
.menu-footer {
    padding:12px 16px calc(12px + env(safe-area-inset-bottom,0));
    border-top:1px solid var(--border);
    background:#fafafa;
    flex-shrink:0;
    display:flex;
    flex-direction:column;
    gap:8px;
}
.menu-cta-row { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.menu-cta {
    display:flex; align-items:center; justify-content:center; gap:8px;
    padding:13px;
    border-radius:var(--radius);
    font-size:13px;
    font-weight:700;
}
.menu-cta-call { background:var(--white); border:1px solid var(--border); color:var(--text); }
.menu-cta-wa { background:var(--green); color:#fff; }
.menu-cta-full {
    background:var(--blue);
    color:var(--yellow);
    padding:14px;
    border-radius:var(--radius);
    font-size:14px;
    font-weight:800;
    text-align:center;
    display:flex; align-items:center; justify-content:center; gap:8px;
}

/* ── RESPONSIVE ── */
@media (min-width:769px) {
    .top-bar { display:block; }
}
@media (max-width:992px) {
    .main-layout { grid-template-columns:200px 1fr; }
    .cat-row { grid-template-columns:repeat(2,1fr); }
    .footer-grid { grid-template-columns:1fr 1fr; }
    .row-img { width:110px; height:80px; }
    .listing-row { grid-template-columns:110px 1fr auto; }
}
@media (max-width:768px) {
    body.has-mobile-bar { padding-bottom:calc(var(--mobile-bar-h) + env(safe-area-inset-bottom,0)); }

    .header-search { display:none; }
    .btn-map, .btn-post { display:none; }
    .hamburger { display:flex; }

    .main-layout { grid-template-columns:1fr; }
    .sidebar { display:none; }

    .listing-row {
        grid-template-columns:100px 1fr;
        grid-template-rows:auto auto;
        gap:10px;
        padding:10px 12px;
    }
    .row-img { width:100px; height:72px; grid-row:span 2; align-self:start; }
    .row-right {
        grid-column:2;
        text-align:left;
        display:flex;
        align-items:center;
        justify-content:space-between;
        min-width:0;
    }
    .row-price { font-size:15px; }
    .row-type, .row-date { display:none; }

    .content-toolbar { flex-direction:column; align-items:flex-start; }
    .promo-banner { flex-direction:column; text-align:center; }
    .cat-row { grid-template-columns:repeat(2,1fr); }
    .footer-grid { grid-template-columns:1fr; gap:20px; }
    .mobile-bar { display:block; }
    .wa-float { display:none; }

    .logo-block { min-width:auto; padding:8px 10px; }
    .logo-sub { display:none; }
    .logo-name { font-size:13px; }

    /* Mobile search bar below header */
    .mobile-search-wrap {
        display:block;
        background:var(--blue-dark);
        padding:0 16px 12px;
    }
    .mobile-search-wrap form {
        display:flex;
        background:var(--white);
        border-radius:var(--radius);
        overflow:hidden;
    }
    .mobile-search-wrap input {
        flex:1; border:none; padding:12px 14px;
        font-size:16px; outline:none;
    }
    .mobile-search-wrap button {
        background:var(--yellow);
        color:var(--blue-dark);
        font-weight:800;
        font-size:13px;
        padding:0 18px;
    }
}
@media (min-width:769px) {
    .mobile-search-wrap { display:none; }
}
@media (max-width:480px) {
    .listing-row { grid-template-columns:88px 1fr; }
    .row-img { width:88px; height:66px; }
    .row-title { font-size:13px; }
    .row-meta { gap:6px; font-size:11px; }
    .cat-row { grid-template-columns:repeat(2,1fr); gap:8px; }
    .cat-box { padding:12px 8px; }
    .cat-box-icon { font-size:24px; }
}

/* ── Live search autocomplete ── */
.search-autocomplete { position:relative; flex:1; min-width:0; display:flex; }
.search-autocomplete input { flex:1; width:100%; }
.search-suggest-dropdown {
    position:absolute;
    top:calc(100% + 4px);
    left:0; right:0;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius);
    box-shadow:0 12px 40px rgba(0,0,0,.15);
    z-index:950;
    max-height:380px;
    overflow-y:auto;
    display:none;
}
.search-suggest-dropdown.open { display:block; }
.search-suggest-loading {
    padding:14px;
    text-align:center;
    font-size:13px;
    color:var(--text-3);
}
.search-suggest-item {
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px 12px;
    border-bottom:1px solid #f0f0f0;
    cursor:pointer;
    transition:background var(--ease);
}
.search-suggest-item:last-child { border-bottom:none; }
.search-suggest-item:hover,
.search-suggest-item.active { background:#f0f6ff; }
.search-suggest-item img {
    width:56px; height:42px;
    object-fit:cover;
    border-radius:3px;
    background:#eee;
    flex-shrink:0;
}
.search-suggest-info { flex:1; min-width:0; }
.search-suggest-title {
    font-size:13px;
    font-weight:600;
    color:var(--text);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.search-suggest-meta { font-size:11px; color:var(--text-3); margin-top:2px; }
.search-suggest-price { font-size:14px; font-weight:800; color:var(--blue); flex-shrink:0; }
.search-suggest-footer {
    padding:10px 12px;
    background:#fafafa;
    border-top:1px solid var(--border);
    text-align:center;
}
.search-suggest-footer a {
    font-size:13px;
    font-weight:700;
    color:var(--blue);
}
.search-suggest-empty { padding:20px; text-align:center; color:var(--text-3); font-size:13px; }
.header-search .search-autocomplete { flex:1; }
.header-search .search-autocomplete input { border:none; padding:11px 14px; }
.mobile-search-wrap .search-autocomplete { flex:1; }
.menu-search .search-autocomplete { width:100%; }
.menu-search form { display:flex; border:1px solid var(--border); border-radius:var(--radius); overflow:visible; position:relative; align-items:stretch; }
.menu-search .search-autocomplete { flex:1; }
.menu-search .search-autocomplete input { border:none; padding:11px 12px; font-size:16px; flex:1; width:100%; }
.menu-search button { background:var(--yellow); color:var(--blue-dark); font-weight:800; font-size:13px; padding:0 14px; flex-shrink:0; border:none; cursor:pointer; }
.menu-search .search-suggest-dropdown { left:0; right:0; top:100%; }

/* ── Forms & pages ── */
.page-content { padding:16px 0 32px; }
.form-card, .info-card {
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:24px;
    margin-bottom:16px;
}
.form-card h1, .page-content h1 { font-size:22px; font-weight:700; margin-bottom:8px; }
.form-card > p, .page-desc { color:var(--text-2); margin-bottom:20px; font-size:14px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:12px; }
.form-group { margin-bottom:12px; }
.form-group label { display:block; font-size:12px; font-weight:600; color:var(--text-2); margin-bottom:6px; }
.form-group input, .form-group select, .form-group textarea {
    width:100%;
    padding:12px 14px;
    border:1px solid var(--border);
    border-radius:var(--radius);
    font-size:14px;
    font-family:inherit;
    outline:none;
    transition:border-color var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color:var(--blue);
    box-shadow:0 0 0 3px rgba(50,98,149,.1);
}
.form-group textarea { min-height:120px; resize:vertical; }
.btn-submit {
    background:var(--blue);
    color:var(--yellow);
    font-weight:800;
    font-size:14px;
    padding:14px 28px;
    border:none;
    border-radius:var(--radius);
    cursor:pointer;
    width:100%;
    transition:background var(--ease);
}
.btn-submit:hover { background:var(--blue-dark); }
.alert-success {
    background:#ecfdf5;
    color:#065f46;
    border:1px solid #a7f3d0;
    padding:12px 14px;
    border-radius:var(--radius);
    margin-bottom:16px;
    font-size:14px;
    font-weight:500;
}
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.filter-bar {
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:14px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    align-items:flex-end;
    margin-bottom:16px;
}
.filter-bar select, .filter-bar .form-group { flex:1; min-width:140px; margin:0; }
.filter-bar .btn-submit { width:auto; padding:12px 24px; }

/* Detail page — sahibinden-style */
.detail-page { padding: 12px 0 40px; }

.detail-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 12px;
}
.detail-head-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--text);
    margin-bottom: 6px;
}
.detail-head-id { font-size: 12px; color: var(--text-3); }
.detail-head-id strong { color: var(--text-2); font-weight: 700; }
.detail-head-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.detail-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text-2);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: var(--ease);
}
.detail-action:hover { border-color: var(--blue); color: var(--blue); background: #f0f6ff; }
.detail-action.active { border-color: var(--yellow-dark); background: #fffde7; color: var(--blue-dark); }
.detail-action.active svg { fill: var(--yellow); stroke: var(--yellow-dark); }

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) 290px;
    gap: 12px;
    align-items: start;
}

.detail-gallery-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.detail-gallery-main {
    position: relative;
    height: 380px;
    background: #eee;
}
.detail-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.detail-gallery-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #fafafa;
    flex-wrap: wrap;
    gap: 8px;
}
.detail-gallery-tab {
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    padding-bottom: 2px;
    border-bottom: 2px solid var(--blue);
}
.detail-gallery-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-2);
    font-weight: 600;
}
.detail-nav-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
}
.detail-nav-btn:hover { border-color: var(--blue); color: var(--blue); }

.detail-thumb-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    padding: 10px;
}
.detail-thumb {
    aspect-ratio: 4/3;
    border: 2px solid transparent;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: none;
}
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-thumb.active { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue); }

.detail-info-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 12px;
    padding: 0 4px;
}
.detail-info-links a {
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
}
.detail-info-links a:hover { text-decoration: underline; }

.detail-specs-card,
.detail-desc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}
.detail-desc-card { margin-top: 12px; }
.detail-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.detail-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -.5px;
    line-height: 1.1;
}
.detail-status-badge {
    background: #e8f0fa;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: .3px;
}
.detail-loc-crumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.detail-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.detail-specs-table tr { border-bottom: 1px solid #f0f0f0; }
.detail-specs-table tr:last-child { border-bottom: none; }
.detail-specs-table th,
.detail-specs-table td {
    padding: 11px 0;
    vertical-align: top;
    text-align: left;
}
.detail-specs-table th {
    width: 42%;
    font-weight: 700;
    color: var(--text);
    padding-right: 12px;
}
.detail-specs-table td { color: var(--text-2); font-weight: 500; line-height: 1.45; }
.detail-highlight { color: #c0392b; font-weight: 700; }

.detail-section-title {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.detail-desc { font-size: 14px; line-height: 1.75; color: var(--text-2); }

.detail-col-contact { position: sticky; top: calc(var(--header-h) + var(--subnav-h) + 12px); }

.detail-seller-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 12px;
}
.detail-seller-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.detail-seller-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--yellow);
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.detail-seller-name { font-weight: 800; font-size: 14px; color: var(--text); }
.detail-seller-sub { font-size: 11px; color: var(--text-3); margin-top: 2px; }

.detail-phone-box {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 14px;
    margin-bottom: 12px;
    background: #fafafa;
}
.detail-phone-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 4px;
}
.detail-phone-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: .3px;
}
.detail-phone-num:hover { color: var(--blue); }

.detail-msg-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius);
    margin-bottom: 10px;
}
.detail-msg-btn:hover { filter: brightness(1.05); }
.detail-msg-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    padding: 8px;
}
.detail-msg-link:hover { text-decoration: underline; }

.detail-safety-card {
    background: #eef6ff;
    border: 1px solid #bfdbfe;
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 12px;
}
.detail-safety-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 10px;
}
.detail-safety-card ul {
    list-style: none;
    font-size: 12px;
    line-height: 1.55;
    color: var(--text-2);
}
.detail-safety-card li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 6px;
}
.detail-safety-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

.detail-tools-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
}
.detail-tools-card h3 {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
}
.detail-tool-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 11px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    margin-bottom: 8px;
    cursor: pointer;
    font-family: inherit;
}
.detail-tool-btn:last-child { margin-bottom: 0; }
.detail-tool-btn:hover { border-color: var(--blue); color: var(--blue); }
.detail-tool-flyer {
    background: var(--yellow);
    border-color: var(--yellow-dark);
    color: var(--blue-dark);
}
.detail-tool-flyer:hover { background: var(--yellow-dark); color: var(--blue-dark); border-color: var(--yellow-dark); }

@media (max-width:1100px) {
    .detail-grid { grid-template-columns: 1fr 1fr; }
    .detail-col-gallery { grid-column: 1 / -1; }
    .detail-col-contact { grid-column: 1 / -1; position: static; }
    .detail-gallery-main { height: 340px; }
}
@media (max-width:768px) {
    .detail-head { padding: 14px; }
    .detail-head-title { font-size: 17px; }
    .detail-head-actions { width: 100%; }
    .detail-action { flex: 1; justify-content: center; min-width: calc(50% - 4px); }
    .detail-grid { grid-template-columns: 1fr; }
    .detail-gallery-main { height: 260px; }
    .detail-thumb-grid { grid-template-columns: repeat(4, 1fr); }
    .detail-price { font-size: 26px; }
    .detail-specs-table th { width: 38%; font-size: 12px; }
}
@media print {
    .header, .subnav, .breadcrumb, .detail-head-actions, .detail-col-contact,
    .mobile-bar, .wa-float, .menu-overlay, .footer { display: none !important; }
    .detail-grid { grid-template-columns: 1fr 1fr; }
    .detail-col-contact { display: none; }
}

#map { height:600px; border:1px solid var(--border); border-radius:var(--radius); background:#e5e7eb; }
.leaflet-popup-content-wrapper { border-radius:8px; }
.map-popup-card { width:260px; }
.map-popup-img { width:100%; height:110px; object-fit:cover; }
.map-popup-body { padding:10px; }
.map-popup-price { font-size:18px; font-weight:800; color:var(--blue); }
.map-popup-btn { display:block; text-align:center; background:var(--blue); color:var(--yellow)!important; padding:8px; border-radius:var(--radius); font-weight:700; font-size:12px; margin-top:8px; }

@media (max-width:992px) {
    .two-col { grid-template-columns:1fr; }
    .form-row { grid-template-columns:1fr; }
}
@media (max-width:768px) {
    #map { height:450px; }
}

/* ── Home V2 ───────────────────────────────────────────── */
.home-v2 { padding-bottom: 36px; }
.home-section { margin-top: 34px; }
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}
.section-head span {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 4px;
}
.section-head h2 { font-size: 30px; font-weight: 800; line-height: 1.2; color: #1f2937; }
.section-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 999px;
    padding: 9px 14px;
    flex-shrink: 0;
}
.section-link:hover { border-color: var(--blue); background: #f0f6ff; }

/* hero slider */
.hero-slider {
    position: relative;
    min-height: clamp(440px, 76vh, 720px);
    background: #111827;
    overflow: hidden;
}
.hero-track {
    display: flex;
    height: 100%;
    transition: transform .55s cubic-bezier(.22,.61,.36,1);
}
.hero-slide {
    min-width: 100%;
    min-height: inherit;
    position: relative;
    display: flex;
    align-items: center;
    isolation: isolate;
}
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(13,22,34,.78) 0%, rgba(13,22,34,.46) 44%, rgba(13,22,34,.24) 100%),
        var(--bg);
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.hero-content { padding-top: 80px; padding-bottom: 90px; color: #fff; }
.hero-content .hero-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    margin-bottom: 14px;
}
.hero-content h1 {
    font-size: clamp(34px, 6.4vw, 68px);
    line-height: 1.04;
    font-weight: 800;
    max-width: 760px;
    margin-bottom: 14px;
}
.hero-content p {
    font-size: clamp(14px, 2.3vw, 20px);
    color: rgba(255,255,255,.88);
    max-width: 640px;
    margin-bottom: 24px;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-btn-primary,
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}
.hero-btn-primary { background: var(--yellow); color: var(--blue-dark); }
.hero-btn-primary:hover { background: var(--yellow-dark); }
.hero-btn-secondary {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
}
.hero-btn-secondary:hover { background: rgba(255,255,255,.2); }
.hero-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hero-badge {
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
}
.hero-price { font-size: 24px; font-weight: 800; color: #fff; }
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    z-index: 4;
}
.hero-prev { left: 18px; }
.hero-next { right: 18px; }
.hero-nav:hover { background: rgba(255,255,255,.24); }
.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}
.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    border: none;
}
.hero-dot.active { background: var(--yellow); transform: scale(1.18); }

/* references */
.reference-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.ref-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.ref-card:hover { transform: translateY(-3px); border-color: #c9d7ea; box-shadow: 0 10px 20px rgba(17,24,39,.08); }
.ref-img-wrap { position: relative; aspect-ratio: 16/10; background: #f2f2f2; }
.ref-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.ref-done {
    position: absolute;
    left: 9px; top: 9px;
    background: #0f766e;
    color: #fff;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
}
.ref-body { padding: 12px; }
.ref-body h3 { font-size: 15px; line-height: 1.35; margin-bottom: 6px; font-weight: 700; color: #1f2937; }
.ref-body p { font-size: 12px; color: var(--text-3); margin-bottom: 8px; }
.ref-body strong { color: var(--blue); font-size: 16px; font-weight: 800; }

/* map spotlight */
.map-spotlight {
    background: linear-gradient(130deg, #17375a 0%, #326295 52%, #4b7db4 100%);
    color: #fff;
    border-radius: 14px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 14px;
    border: 1px solid rgba(255,255,255,.14);
}
.map-spotlight-text span {
    display: inline-block;
    opacity: .86;
    font-size: 11px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px;
}
.map-spotlight-text h2 { font-size: 30px; line-height: 1.15; margin-bottom: 10px; font-weight: 800; }
.map-spotlight-text p { color: rgba(255,255,255,.88); margin-bottom: 14px; font-size: 14px; max-width: 560px; }
.map-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 16px;
}
.map-features div {
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 9px;
    padding: 10px;
}
.map-features strong { display: block; font-size: 19px; font-weight: 800; }
.map-features span { font-size: 11px; color: rgba(255,255,255,.82); }
.map-spotlight-card {
    background: rgba(255,255,255,.11);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 10px;
    padding: 16px;
    align-self: stretch;
}
.map-spotlight-card h3 { font-size: 17px; margin-bottom: 10px; font-weight: 800; }
.map-chip-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.map-chip-row a {
    background: rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 700;
}
.map-chip-row a:hover { background: rgba(255,255,255,.3); }
.map-spotlight-card p { font-size: 13px; color: rgba(255,255,255,.86); }

/* faq */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}
.faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 14px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
}
.faq-plus {
    font-size: 22px;
    line-height: 1;
    color: var(--blue);
    font-weight: 300;
    transition: transform .2s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease, padding .25s ease;
    padding: 0 14px;
}
.faq-answer p { font-size: 13px; color: var(--text-2); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 180px; padding: 0 14px 14px; }
.faq-item.open .faq-plus { transform: rotate(45deg); }

/* reviews */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
}
.review-stars { color: #f59e0b; font-size: 14px; margin-bottom: 8px; letter-spacing: 1px; }
.review-card p { font-size: 13px; color: var(--text-2); line-height: 1.7; margin-bottom: 10px; }
.review-card strong { font-size: 13px; color: #111827; }

/* cta */
.cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.cta-card {
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 12px;
    padding: 22px;
    border: 1px solid #1f2937;
}
.cta-card:nth-child(2) {
    background: linear-gradient(135deg, #2a5280 0%, #326295 100%);
    border-color: #326295;
}
.cta-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 10px; color: #fff; }
.cta-card p { font-size: 14px; line-height: 1.7; margin-bottom: 14px; color: rgba(255,255,255,.86); }
.cta-card span { font-size: 13px; font-weight: 800; color: var(--yellow); }

@media (max-width: 1100px) {
    .section-head h2 { font-size: 26px; }
    .reference-grid, .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
    .map-spotlight { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .home-section { margin-top: 24px; }
    .hero-slider { min-height: 560px; }
    .hero-content { padding-top: 56px; padding-bottom: 86px; }
    .hero-content h1 { font-size: 38px; max-width: 96%; }
    .hero-content p { font-size: 15px; max-width: 96%; }
    .hero-actions { width: 100%; }
    .hero-btn-primary, .hero-btn-secondary { flex: 1; min-width: calc(50% - 5px); }
    .hero-nav { display: none; }
    .hero-price { font-size: 20px; }
    .section-head { align-items: flex-start; flex-direction: column; }
    .section-head h2 { font-size: 22px; }
    .section-link { padding: 8px 12px; font-size: 12px; }
    .reference-grid, .review-grid, .cta-split { grid-template-columns: 1fr; }
    .map-spotlight-text h2 { font-size: 23px; }
    .map-features strong { font-size: 17px; }
    .cta-card { padding: 18px; }
    .cta-card h3 { font-size: 21px; }
}

/* ── Premium Header Refresh ───────────────────────────── */
.premium-topbar {
    background: #0f172a;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.premium-topbar-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.premium-topbar-left,
.premium-topbar-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.premium-topbar-left,
.premium-topbar-right { white-space: nowrap; }
.premium-topbar a {
    color: rgba(255,255,255,.8);
    font-size: 12px;
    font-weight: 500;
}
.premium-topbar a:hover { color: #fff; }

.premium-header {
    background: linear-gradient(125deg, #111827 0%, #0f2035 45%, #152a43 100%);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.premium-header-main {
    min-height: 72px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
}
.premium-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.premium-brand-mark {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--yellow) 0%, #f6c700 100%);
    color: #1f2f45;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(255,232,0,.35);
}
.premium-brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.premium-brand-name {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .2px;
}
.premium-brand-sub {
    color: rgba(255,255,255,.58);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.premium-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 0;
}
.premium-menu a {
    color: rgba(255,255,255,.84);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 11px;
    border-radius: 10px;
    white-space: nowrap;
}
.premium-menu a:hover,
.premium-menu a.active {
    color: #fff;
    background: rgba(255,255,255,.11);
}

.premium-header-search {
    background: rgba(255,255,255,.95);
    box-shadow: none;
    border: 1px solid rgba(255,255,255,.15);
    width: 100%;
}
.premium-header-search input { font-size: 13px; }

.premium-search-bar {
    padding: 0 0 12px;
}
.premium-search-bar .wrap {
    display: block;
}

.premium-contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}
.premium-contact-chip:hover { background: rgba(255,255,255,.2); }

.premium-header-actions .btn-post {
    border-radius: 999px;
    padding: 9px 14px;
    box-shadow: 0 6px 18px rgba(255,232,0,.25);
}

.desktop-only { display: inline-flex; }

@media (max-width: 1250px) {
    .premium-header-main { grid-template-columns: auto 1fr auto; }
    .premium-menu { display: none; }
}
@media (max-width: 768px) {
    .premium-topbar-right { display: none; }
    .premium-topbar-left { gap: 8px; }
    .premium-topbar a { font-size: 11px; }
    .desktop-only { display: none !important; }
    .premium-header-main {
        min-height: 62px;
        grid-template-columns: 1fr auto;
        gap: 10px;
    }
    .premium-brand-mark { width: 36px; height: 36px; font-size: 18px; border-radius: 10px; }
    .premium-brand-name { font-size: 15px; }
    .premium-brand-sub { font-size: 9px; letter-spacing: .8px; }
    .premium-search-bar { display: none; }
}

