/* ============================================================
   MyRooms — design system
   Light, premium, trust-focused. Teal/blue accents, soft shadows,
   rounded cards, mobile-first.
   ============================================================ */

:root {
    /* Brand */
    --brand:        #0d9488;   /* teal-600 */
    --brand-dark:   #0f766e;
    --brand-light:  #ccfbf1;
    --accent:       #2563eb;   /* blue-600 */
    --accent-light: #dbeafe;

    /* Status */
    --success:      #16a34a;
    --success-bg:   #dcfce7;
    --warning:      #d97706;
    --warning-bg:   #fef3c7;
    --danger:       #dc2626;
    --danger-bg:    #fee2e2;
    --vip:          #b8860b;
    --vip-grad:     linear-gradient(135deg, #f6c453, #d4972b);
    --info:         #0ea5e9;
    --info-bg:      #e0f2fe;

    /* Neutrals */
    --ink:          #0f172a;
    --ink-2:        #334155;
    --muted:        #64748b;
    --muted-2:      #94a3b8;
    --line:         #e2e8f0;
    --line-2:       #f1f5f9;
    --bg:           #ffffff;
    --bg-soft:      #f8fafc;
    --bg-softer:    #f1f5f9;
    --surface:      #ffffff;

    /* Effects */
    --radius:       14px;
    --radius-lg:    20px;
    --radius-sm:    10px;
    --shadow-sm:    0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.05);
    --shadow:       0 4px 12px rgba(15,23,42,.06), 0 2px 4px rgba(15,23,42,.04);
    --shadow-md:    0 10px 30px rgba(15,23,42,.08), 0 4px 8px rgba(15,23,42,.04);
    --shadow-lg:    0 20px 50px rgba(15,23,42,.12);
    --ring:         0 0 0 4px rgba(13,148,136,.15);

    --container:    1200px;
    --hero-grad:    linear-gradient(135deg, #0d9488 0%, #0e7490 55%, #2563eb 120%);
    --font: 'Noto Sans Georgian', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-display: "BPG Irubaqidze", 'Noto Sans Georgian', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
svg { width: 1.25em; height: 1.25em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section--soft { background: var(--bg-soft); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section__head--left { text-align: right; margin-right: 0; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--brand); font-weight: 700; font-size: 14px;
    background: var(--brand-light); padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
}
h1,h2,h3,h4 { color: var(--ink); line-height: 1.25; font-weight: 800; font-family: var(--font-display); }
.section__title { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -.02em; }
.section__sub { color: var(--muted); font-size: 17px; margin-top: 12px; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 22px; border-radius: var(--radius-sm); border: 1px solid transparent;
    font-weight: 700; font-size: 15px; transition: .18s ease; white-space: nowrap;
    background: var(--bg-softer); color: var(--ink);
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 1.1em; height: 1.1em; }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 6px 16px rgba(13,148,136,.28); }
.btn--primary:hover { background: var(--brand-dark); box-shadow: 0 10px 22px rgba(13,148,136,.34); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 6px 16px rgba(37,99,235,.26); }
.btn--accent:hover { filter: brightness(1.05); }
.btn--ghost { background: #fff; border-color: var(--line); color: var(--ink-2); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn--light { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.28); }
.btn--light:hover { background: rgba(255,255,255,.26); }
.btn--success { background: var(--success); color: #fff; }
.btn--danger { background: var(--danger); color: #fff; }
.btn--whatsapp { background: #25d366; color: #fff; }
.btn--block { width: 100%; }
.btn--lg { padding: 15px 28px; font-size: 16px; border-radius: var(--radius); }
.btn--sm { padding: 8px 14px; font-size: 13px; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ── Badges ────────────────────────────────────────────── */
.badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 10px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
    background: var(--bg-softer); color: var(--ink-2);
}
.badge svg { width: 1em; height: 1em; }
.badge--verified { background: var(--success-bg); color: var(--success); }
.badge--vip { background: var(--vip-grad); color: #5a3d00; box-shadow: 0 2px 8px rgba(184,134,11,.3); }
.badge--sponsored { background: #f1f5f9; color: var(--muted); border: 1px dashed var(--muted-2); }
.badge--success { background: var(--success-bg); color: var(--success); }
.badge--warning { background: var(--warning-bg); color: var(--warning); }
.badge--danger { background: var(--danger-bg); color: var(--danger); }
.badge--info { background: var(--info-bg); color: var(--info); }
.badge--primary { background: var(--brand-light); color: var(--brand-dark); }
.badge--muted { background: var(--bg-softer); color: var(--muted); }

/* ── Header ────────────────────────────────────────────── */
.site-header {
    position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px; letter-spacing: -.02em; }
.logo__mark {
    width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
    background: var(--hero-grad); color: #fff; box-shadow: var(--shadow);
}
.logo__mark svg { width: 22px; height: 22px; }
.logo b { color: var(--brand); }
.nav { display: flex; align-items: center; gap: 4px; margin-inline-start: auto; }
.nav a { padding: 9px 13px; border-radius: 9px; font-weight: 600; font-size: 15px; color: var(--ink-2); transition: .15s; }
.nav a:hover, .nav a.is-active { background: var(--bg-soft); color: var(--brand); }
.header__actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line); background: #fff; align-items: center; justify-content: center; }

/* Language switcher (flag icons) */
.lang-switch { display: inline-flex; gap: 5px; align-items: center; }
.lang-switch__opt { display: inline-flex; width: 26px; height: 18px; border-radius: 4px; overflow: hidden; opacity: .45; border: 1px solid var(--line); transition: .15s; }
.lang-switch__opt:hover { opacity: 1; transform: translateY(-1px); }
.lang-switch__opt.is-active { opacity: 1; box-shadow: 0 0 0 2px var(--brand); border-color: var(--brand); }
.lang-switch__opt svg { width: 100%; height: 100%; }

/* ── Hero ──────────────────────────────────────────────── */
.hero { position: relative; background: var(--hero-grad); color: #fff; overflow: hidden; padding: 72px 0 96px; }
/* Readability overlay above the photo (z-index 1), content sits on z-index 2.
   Lighter at the centre so the background photo stays clearly visible, darker
   at top/bottom for text + search-bar contrast. */
.hero::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(720px 460px at 50% 42%, rgba(7,30,34,.18), transparent 70%),
        linear-gradient(180deg, rgba(7,30,34,.55) 0%, rgba(7,30,34,.32) 42%, rgba(7,30,34,.62) 100%);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; opacity: 1; transition: opacity .5s ease, background-image .4s ease; }
.hero__inner { position: relative; z-index: 2; max-width: 880px; text-align: center; margin: 0 auto; }
.hero h1 { color: #fff; font-size: clamp(30px, 5vw, 52px); letter-spacing: -.025em; text-shadow: 0 2px 18px rgba(0,0,0,.45); }
.hero p { color: #fff; font-size: clamp(16px, 2vw, 20px); margin: 18px auto 0; max-width: 680px; text-shadow: 0 1px 12px rgba(0,0,0,.4); }
/* Hero slider */
.hero__slides { min-height: 132px; }
.hero-slide { display: none; }
.hero-slide.is-active { display: block; animation: heroFade .55s ease; }
@keyframes heroFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.hero__dots { display: flex; gap: 8px; justify-content: center; margin-top: 22px; }
.hero__dot { width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(255,255,255,.4); cursor: pointer; transition: .2s; padding: 0; }
.hero__dot.is-active { background: #fff; width: 26px; border-radius: 999px; }
@media (max-width: 640px) { .hero__slides { min-height: 168px; } }

.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.hero__badges .chip { background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.24); }

/* Search bar */
.searchbar {
    margin: 34px auto 0; background: #fff; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); padding: 10px; display: grid;
    grid-template-columns: 1.4fr 1fr auto; gap: 8px; max-width: 820px; text-align: right;
}
.searchbar .field { display: flex; align-items: center; gap: 10px; padding: 6px 14px; border-radius: var(--radius); }
.searchbar .field:not(:last-child) { border-inline-end: 1px solid var(--line); }
.searchbar .field svg { color: var(--brand); width: 20px; height: 20px; flex: none; }
.searchbar input, .searchbar select {
    border: 0; outline: 0; font-family: inherit; font-size: 15px; width: 100%;
    background: transparent; color: var(--ink); padding: 8px 0;
}
.searchbar .btn { border-radius: var(--radius); }
.search-ai-row { margin-top: 14px; display: flex; justify-content: center; }
.btn--ai {
    background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.3);
    backdrop-filter: blur(4px);
}
.btn--ai:hover { background: rgba(255,255,255,.26); }

/* ── Stat strip ────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: -52px; position: relative; z-index: 5; }
.stat { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 20px; text-align: center; }
.stat b { display: block; font-size: 28px; color: var(--brand); }
.stat span { color: var(--muted); font-size: 14px; }

/* ── Cards grid ────────────────────────────────────────── */
.grid { display: grid; gap: 20px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: .2s ease; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: #cbd5e1; }

/* Category card */
.cat-card { padding: 24px; display: block; }
.cat-card__icon { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; color: #fff; margin-bottom: 16px; }
.cat-card__icon svg { width: 28px; height: 28px; }
.cat-card h3 { font-size: 18px; }
.cat-card p { color: var(--muted); font-size: 14px; margin-top: 6px; min-height: 40px; }
.cat-card__meta { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-2); }
.cat-card__count { color: var(--ink-2); font-weight: 700; font-size: 14px; }
.cat-card__go { color: var(--brand); display: inline-flex; align-items: center; gap: 4px; font-weight: 700; font-size: 14px; }

/* Provider card */
.provider-card { padding: 20px; position: relative; display: flex; flex-direction: column; }
.provider-card.is-vip { border-color: #f3d98b; box-shadow: 0 8px 24px rgba(184,134,11,.12); }
.provider-card__top { display: flex; gap: 14px; }
.avatar { width: 64px; height: 64px; border-radius: 14px; flex: none; overflow: hidden; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 22px; }
.avatar--lg { width: 96px; height: 96px; font-size: 32px; border-radius: 20px; }
.provider-card__id { min-width: 0; flex: 1; }
.provider-card__name { font-size: 17px; font-weight: 800; display: flex; align-items: center; gap: 6px; }
.provider-card__name .v { color: var(--success); display: inline-flex; }
.provider-card__name .v svg { width: 17px; height: 17px; }
.provider-card__cat { color: var(--muted); font-size: 14px; margin-top: 2px; }
.provider-card__loc { color: var(--muted-2); font-size: 13px; display: inline-flex; align-items: center; gap: 4px; margin-top: 4px; }
.provider-card__loc svg { width: 14px; height: 14px; }
.rating { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; }
.stars { display: inline-flex; }
.star { color: #d8dee9; font-size: 15px; line-height: 1; }
.star--full { color: #f5a623; }
.star--half { background: linear-gradient(90deg,#f5a623 50%, #d8dee9 50%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rating small { color: var(--muted); font-weight: 600; }
.provider-card__meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.metaitem { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--ink-2); background: var(--bg-soft); padding: 5px 10px; border-radius: 8px; }
.metaitem svg { width: 14px; height: 14px; color: var(--brand); }
.provider-card__badges { display: flex; flex-wrap: wrap; gap: 6px; position: absolute; top: 16px; inset-inline-end: 16px; }
.provider-card__foot { margin-top: auto; padding-top: 14px; display: flex; gap: 8px; }
.provider-card__foot .btn { flex: 1; }
.provider-card__price { font-weight: 800; color: var(--ink); }
.provider-card__price small { color: var(--muted); font-weight: 600; }

/* ── How it works ──────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; counter-reset: step; }
.step { text-align: center; padding: 24px; position: relative; }
.step__num { width: 52px; height: 52px; border-radius: 14px; background: var(--brand-light); color: var(--brand-dark); display: grid; place-items: center; font-weight: 800; font-size: 20px; margin: 0 auto 14px; }
.step h3 { font-size: 17px; }
.step p { color: var(--muted); font-size: 14px; margin-top: 6px; }

/* ── AI block ──────────────────────────────────────────── */
.ai-block { background: linear-gradient(135deg, #0f172a, #134e4a); color: #fff; border-radius: var(--radius-lg); padding: 44px; position: relative; overflow: hidden; }
.ai-block::after { content:""; position:absolute; width:300px; height:300px; border-radius:50%; background: radial-gradient(circle, rgba(13,148,136,.5), transparent 70%); top:-80px; inset-inline-end:-60px; }
.ai-block__inner { position: relative; z-index: 1; max-width: 720px; }
.ai-block h2 { color: #fff; font-size: clamp(24px,3vw,32px); }
.ai-block p { color: rgba(255,255,255,.85); margin-top: 12px; font-size: 17px; }
.ai-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.ai-chip { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; padding: 9px 16px; border-radius: 999px; font-size: 14px; font-weight: 600; transition: .15s; }
.ai-chip:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

/* ── Urgent CTA ────────────────────────────────────────── */
.urgent { background: linear-gradient(135deg,#dc2626,#ea580c); color: #fff; border-radius: var(--radius-lg); padding: 40px; }
.urgent h2 { color: #fff; }
.urgent p { color: rgba(255,255,255,.9); margin-top: 8px; }

/* ── Reviews ───────────────────────────────────────────── */
.review-card { padding: 22px; }
.review-card__stars { margin-bottom: 10px; }
.review-card__body { color: var(--ink-2); font-size: 15px; }
.review-card__author { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.review-card__author .avatar { width: 40px; height: 40px; font-size: 15px; border-radius: 10px; }
.review-card__author b { font-size: 14px; }
.review-card__author span { color: var(--muted); font-size: 13px; }

/* ── Forms ─────────────────────────────────────────────── */
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; color: var(--ink-2); }
.input, .select, .textarea {
    width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
    font-family: inherit; font-size: 15px; background: #fff; color: var(--ink); transition: .15s;
}
.input:focus, .select:focus, .textarea:focus { outline: 0; border-color: var(--brand); box-shadow: var(--ring); }
.textarea { resize: vertical; min-height: 110px; }
.field-error { color: var(--danger); font-size: 13px; margin-top: 5px; }
.input.has-error, .select.has-error, .textarea.has-error { border-color: var(--danger); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.help { color: var(--muted); font-size: 13px; }
.checkbox { display: flex; align-items: center; gap: 9px; font-size: 14px; }
.checkbox input { width: 18px; height: 18px; accent-color: var(--brand); }

/* ── Filters (sidebar) ─────────────────────────────────── */
.layout-split { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.filters { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; position: sticky; top: 88px; }
.filters h3 { font-size: 16px; margin-bottom: 6px; }
.filter-group { padding: 16px 0; border-top: 1px solid var(--line-2); }
.filter-group:first-of-type { border-top: 0; }
.filter-group h4 { font-size: 14px; color: var(--ink-2); margin-bottom: 10px; }
.filter-opt { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 14px; color: var(--ink-2); }

/* ── Breadcrumb ────────────────────────────────────────── */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; color: var(--muted); font-size: 14px; padding: 18px 0; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { color: var(--muted-2); }

/* ── Page header band ──────────────────────────────────── */
.page-band { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 28px 0 36px; }
.page-band h1 { font-size: clamp(26px, 3.4vw, 36px); letter-spacing: -.02em; }
.page-band p { color: var(--muted); margin-top: 8px; max-width: 720px; }
.page-band__icon { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; color: #fff; margin-bottom: 14px; }
.page-band__icon svg { width: 30px; height: 30px; }

/* ── Toolbar / result count ────────────────────────────── */
.toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 12px; }
.toolbar .count { color: var(--muted); font-size: 14px; }
.vip-row-head { display: flex; align-items: center; gap: 8px; margin: 6px 0 14px; font-weight: 800; color: var(--vip); }

/* ── Provider profile ──────────────────────────────────── */
.profile-hero { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.profile-hero__row { display: flex; gap: 22px; flex-wrap: wrap; }
.profile-hero h1 { font-size: 28px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.profile-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 14px; color: var(--ink-2); font-size: 14px; }
.profile-meta .m { display: flex; align-items: center; gap: 6px; }
.profile-meta .m svg { color: var(--brand); width: 17px; height: 17px; }
.profile-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.gallery img, .gallery .ph { border-radius: var(--radius-sm); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.panel h2 { font-size: 20px; margin-bottom: 14px; }
.hours-table { width: 100%; font-size: 14px; }
.hours-table td { padding: 7px 0; border-bottom: 1px solid var(--line-2); }
.hours-table td:last-child { text-align: end; color: var(--ink-2); font-weight: 600; }

/* ── Banner ────────────────────────────────────────────── */
.adbanner { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: block; position: relative; }
.adbanner .ph { aspect-ratio: 8/2; }
.adbanner__tag { position: absolute; top: 8px; inset-inline-start: 8px; }

/* ── Provider CTA ──────────────────────────────────────── */
.cta-band { background: var(--hero-grad); color: #fff; border-radius: var(--radius-lg); padding: 48px; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(24px,3vw,34px); }
.cta-band p { color: rgba(255,255,255,.9); margin: 10px auto 24px; max-width: 560px; }

/* ── Footer ────────────────────────────────────────────── */
.site-footer { background: #0b1220; color: #cbd5e1; padding: 56px 0 28px; margin-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.site-footer a { color: #94a3b8; font-size: 14px; display: block; padding: 5px 0; transition: .15s; }
.site-footer a:hover { color: #fff; }
.footer-brand p { color: #94a3b8; font-size: 14px; margin-top: 14px; max-width: 280px; }
.footer-bottom { border-top: 1px solid #1e293b; margin-top: 36px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: #64748b; font-size: 13px; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; background: #1e293b; display: grid; place-items: center; padding: 0; }
.socials a:hover { background: var(--brand); color: #fff; }

/* ── Flash messages ────────────────────────────────────── */
.flash { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 16px; font-weight: 600; font-size: 14px; }
.flash--success { background: var(--success-bg); color: #166534; }
.flash--error { background: var(--danger-bg); color: #991b1b; }
.flash--info { background: var(--info-bg); color: #075985; }

/* ── Pagination ────────────────────────────────────────── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 9px 14px; border-radius: 9px; border: 1px solid var(--line); font-weight: 600; font-size: 14px; background: #fff; color: var(--ink-2); }
.pagination .is-active { background: var(--brand); color: #fff; border-color: var(--brand); }
.pagination a:hover { border-color: var(--brand); color: var(--brand); }

/* ── Tag pills / related ───────────────────────────────── */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { background: #fff; border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--ink-2); transition: .15s; }
.pill:hover { border-color: var(--brand); color: var(--brand); }

/* ── Empty state ───────────────────────────────────────── */
.empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty svg { width: 54px; height: 54px; color: var(--muted-2); margin-bottom: 14px; }

/* ── Utility ───────────────────────────────────────────── */
.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}
.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}
.text-center{text-align:center}.text-muted{color:var(--muted)}
.flex{display:flex}.items-center{align-items:center}.gap-2{gap:8px}.gap-3{gap:12px}
.between{justify-content:space-between}.wrap{flex-wrap:wrap}
.hidden{display:none}.w-full{width:100%}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 980px) {
    .grid--4 { grid-template-columns: repeat(2,1fr); }
    .grid--3 { grid-template-columns: repeat(2,1fr); }
    .steps { grid-template-columns: repeat(2,1fr); }
    .stats { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    /* !important so inline grid-template overrides (provider profile, contact,
       admin) also collapse to one column on tablet/phone */
    .layout-split { grid-template-columns: 1fr !important; }
    .adm-grid-2, .adm-grid-3 { grid-template-columns: 1fr !important; }
    .filters { position: static; }
    .nav { display: none; }
    .nav-toggle { display: inline-flex; }
    /* keep only the hamburger in the top bar; everything else lives in the drawer */
    .header__actions > *:not(.nav-toggle) { display: none; }
    .header__inner { gap: 12px; }
}
@media (max-width: 640px) {
    .section { padding: 40px 0; }
    .container { padding: 0 16px; }
    .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr 1fr; }
    .searchbar { grid-template-columns: 1fr; padding: 8px; }
    .searchbar .field:not(:last-child) { border-inline-end: 0; border-bottom: 1px solid var(--line); }
    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr 1fr; }
    .ai-block, .urgent, .cta-band { padding: 26px 20px; }
    .profile-actions { width: 100%; }
    .profile-actions .btn { flex: 1; min-width: 130px; }
    /* tighter chrome + headings on phones */
    .hero { padding: 44px 0 56px; }
    .hero__slides { min-height: 150px; }
    .section__title { font-size: 23px; }
    .section__head { margin-bottom: 28px; }
    .profile-hero { padding: 20px; }
    .profile-hero h1 { font-size: 22px; }
    .panel { padding: 18px; }
    .page-band { padding: 22px 0 26px; }
    .profile-meta { gap: 12px; }
    .logo { font-size: 19px; }
    .logo__mark { width: 36px; height: 36px; }
}
@media (max-width: 380px) {
    .stats { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr; }
    .hero h1 { font-size: 27px; }
}

/* ── AI assistant modal ────────────────────────────────── */
.ai-modal { display: none; position: fixed; inset: 0; z-index: 80; background: rgba(15,23,42,.55); backdrop-filter: blur(4px); align-items: flex-end; justify-content: center; }
.ai-modal.is-open { display: flex; }
.ai-panel { background: #fff; width: 100%; max-width: 480px; height: 86vh; max-height: 720px; border-radius: 22px 22px 0 0; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); overflow: hidden; }
@media (min-width: 700px) { .ai-modal { align-items: center; } .ai-panel { border-radius: 22px; } }
.ai-head { background: linear-gradient(135deg,#0f172a,#134e4a); color: #fff; padding: 18px 20px; display: flex; align-items: center; gap: 12px; }
.ai-head .av { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.15); display: grid; place-items: center; }
.ai-head b { display: block; font-size: 16px; }
.ai-head span { font-size: 12.5px; color: rgba(255,255,255,.7); }
.ai-head .x { margin-inline-start: auto; background: rgba(255,255,255,.15); border: 0; color: #fff; width: 34px; height: 34px; border-radius: 9px; }
.ai-log { flex: 1; overflow-y: auto; padding: 18px; background: var(--bg-soft); display: flex; flex-direction: column; gap: 12px; }
.ai-msg { max-width: 88%; padding: 12px 15px; border-radius: 16px; font-size: 14.5px; line-height: 1.55; }
.ai-msg--user { align-self: flex-end; background: var(--brand); color: #fff; border-bottom-right-radius: 5px; }
.ai-msg--bot { align-self: flex-start; background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.ai-foot { padding: 14px; border-top: 1px solid var(--line); display: flex; gap: 8px; }
.ai-foot input { flex: 1; border: 1px solid var(--line); border-radius: 999px; padding: 12px 16px; font-family: inherit; font-size: 14.5px; outline: 0; }
.ai-foot input:focus { border-color: var(--brand); box-shadow: var(--ring); }
.ai-foot button { width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--brand); color: #fff; flex: none; }
.ai-recs { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.ai-rec { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 11px 13px; display: block; transition: .15s; }
.ai-rec:hover { border-color: var(--brand); }
.ai-rec.is-vip { border-color: #f3d98b; background: #fffbeb; }
.ai-rec__top { display: flex; align-items: center; gap: 6px; font-size: 14.5px; }
.ai-rec__meta { color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.ai-rec__why { color: var(--ink-2); font-size: 12.5px; margin-top: 5px; }
.ai-typing { display: inline-flex; gap: 4px; }
.ai-typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--muted-2); animation: aiBlink 1.2s infinite; }
.ai-typing i:nth-child(2){ animation-delay: .2s } .ai-typing i:nth-child(3){ animation-delay: .4s }
@keyframes aiBlink { 0%,60%,100%{opacity:.3} 30%{opacity:1} }

/* Package picker (registration) */
.pkg-pick { transition: .15s; }
.pkg-pick:hover { border-color: var(--muted-2); }
.pkg-pick:has(input:checked) { border-color: var(--brand); box-shadow: var(--ring); }

/* Provider public ID code chip */
.code-chip { display: inline-flex; align-items: center; gap: 5px; font-family: ui-monospace, monospace; font-weight: 700; font-size: 13px; background: var(--brand-light); color: var(--brand-dark); padding: 3px 9px; border-radius: 7px; letter-spacing: .04em; }

/* ── Support chat (24/7) ───────────────────────────────── */
.support-fab { position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 70; width: 58px; height: 58px; border-radius: 50%; border: 0; background: var(--brand); color: #fff; box-shadow: 0 10px 26px rgba(13,148,136,.45); display: grid; place-items: center; cursor: pointer; transition: .2s; }
.support-fab:hover { transform: translateY(-3px) scale(1.04); }
.support-fab svg { width: 26px; height: 26px; }
.support-fab__pulse { position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(13,148,136,.5); animation: supportPulse 2.2s infinite; }
@keyframes supportPulse { 0% { box-shadow: 0 0 0 0 rgba(13,148,136,.5); } 70% { box-shadow: 0 0 0 16px rgba(13,148,136,0); } 100% { box-shadow: 0 0 0 0 rgba(13,148,136,0); } }
.support-modal { display: none; position: fixed; bottom: 90px; inset-inline-end: 22px; z-index: 71; width: 370px; max-width: calc(100vw - 32px); }
.support-modal.is-open { display: block; }
.support-panel { background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; display: flex; flex-direction: column; height: 460px; max-height: calc(100vh - 130px); border: 1px solid var(--line); }
@media (max-width: 480px) { .support-modal { inset-inline: 12px; bottom: 84px; } .support-panel { height: 70vh; } }

/* mobile nav drawer */
.mobile-nav { display: none; }
.mobile-nav.is-open { display: block; position: fixed; inset: 72px 0 0; background: #fff; z-index: 49; padding: 20px; overflow-y: auto; }
.mobile-nav a { display: block; padding: 14px 12px; border-radius: 10px; font-weight: 600; font-size: 16px; border-bottom: 1px solid var(--line-2); }
