/* ============================================================
   Ghartal Welfare — Public site design system
   Light / soft-gray background, greenish modern palette
   Mobile-first, elegant, simple
   ============================================================ */

:root {
    --green-900: #0f4d2e;
    --green-700: #167a45;
    --green-600: #1f9a57;
    --green-500: #27ae60;
    --green-400: #43c97c;
    --green-100: #e6f6ec;
    --green-050: #f1faf4;

    --ink: #1f2a24;
    --muted: #5b6b62;
    --line: #e4eae7;
    --bg: #f6f8f7;
    --card: #ffffff;

    --shadow-sm: 0 1px 2px rgba(16, 64, 40, 0.06);
    --shadow: 0 6px 24px rgba(16, 64, 40, 0.08);
    --shadow-lg: 0 18px 48px rgba(16, 64, 40, 0.14);

    --radius: 16px;
    --radius-sm: 10px;
    --maxw: 1140px;
    --header-h: 96px;

    --font: "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--green-900); }

img { max-width: 100%; display: block; }

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 18px;
}

/* ---------- Decorative green particles (subtle, CSS only) ---------- */
.particles {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.particles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--green-400), var(--green-600));
    opacity: 0.08;
    filter: blur(2px);
    animation: floatUp 22s linear infinite;
}
.particles span:nth-child(1){ width:120px;height:120px;left:6%;  animation-duration:26s; }
.particles span:nth-child(2){ width:70px; height:70px; left:24%; animation-duration:19s; animation-delay:3s; }
.particles span:nth-child(3){ width:160px;height:160px;left:48%; animation-duration:30s; animation-delay:1s; opacity:0.06;}
.particles span:nth-child(4){ width:90px; height:90px; left:68%; animation-duration:23s; animation-delay:5s; }
.particles span:nth-child(5){ display:none; }
.particles span:nth-child(6){ display:none; }
@media (prefers-reduced-motion: reduce) { .particles { display: none; } }

@keyframes floatUp {
    0%   { transform: translateY(110vh) scale(0.6); }
    100% { transform: translateY(-20vh) scale(1.1); }
}

/* ---------------------------- Header / Nav ---------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--line);
}
.nav-top {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.nav-right { display: flex; align-items: center; gap: 10px; }
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--green-900);
    font-size: 1.05rem;
    white-space: nowrap;
}
.brand img { height: 91px; width: auto; }
.brand small { display: block; font-weight: 600; font-size: 0.7rem; color: var(--muted); letter-spacing: 0.5px; }

/* Full-width menu bar on its own line, equally divided */
.nav-bar { border-top: 1px solid var(--line); background: var(--green-050); }
.nav-links {
    display: flex;
    align-items: stretch;
    gap: 6px;
    list-style: none;
    padding-top: 5px;
    padding-bottom: 5px;
}
.nav-links li { flex: 1; }
.nav-links a {
    display: block;
    text-align: center;
    padding: 10px 8px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--green-100); color: var(--green-900); }
.nav-links a.active { background: var(--green-600); color: #fff; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
    display: none;
    background: var(--green-100);
    border: none;
    width: 44px; height: 44px;
    border-radius: 12px;
    font-size: 1.3rem;
    color: var(--green-900);
    cursor: pointer;
}

/* Login dropdown */
.login-wrap { position: relative; }
.login-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: 300px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 18px;
    display: none;
    z-index: 200;
}
.login-menu.open { display: block; animation: dropIn 0.16s ease; }
@keyframes dropIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.login-menu h4 { font-size: 1rem; color: var(--green-900); margin-bottom: 4px; }
.login-menu p.hint { font-size: 0.78rem; color: var(--muted); margin-bottom: 12px; }
.login-tabs { display: flex; gap: 6px; margin-bottom: 12px; }
.login-tabs button {
    flex: 1; padding: 7px; border-radius: 8px; border: 1px solid var(--line);
    background: #fff; font-weight: 600; font-size: 0.82rem; cursor: pointer; color: var(--muted);
}
.login-tabs button.active { background: var(--green-600); color: #fff; border-color: var(--green-600); }

/* ------------------------------ Buttons ------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: transform 0.12s, box-shadow 0.15s, background 0.15s;
    white-space: nowrap;
    line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-700); color: #fff; box-shadow: var(--shadow); }
.btn-ghost { background: #fff; color: var(--green-700); border-color: var(--line); }
.btn-ghost:hover { background: var(--green-050); }
.btn-light { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-light:hover { background: rgba(255,255,255,0.28); color:#fff; }
.btn-block { width: 100%; }

/* Urdu text */
.urdu { font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', serif; direction: rtl; text-align: right; line-height: 2.4; }

/* Interest selector (GGG) */
.interest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 8px; }
.interest-opt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
    font-size: 0.9rem;
    text-align: center;
}
.interest-opt input { width: 16px; height: 16px; flex-shrink: 0; margin: 0; }
.interest-opt span { flex: 0 1 auto; text-align: center; }

/* Styled file input */
input[type="file"].file-styled,
.file-styled {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    font-size: 0.9rem;
    color: var(--muted);
    cursor: pointer;
}
input[type="file"].file-styled::file-selector-button,
.file-styled::file-selector-button {
    margin-right: 12px;
    padding: 8px 15px;
    border: none;
    border-radius: 8px;
    background: var(--green-600);
    color: #fff;
    font-weight: 600;
    font-size: 0.86rem;
    cursor: pointer;
    transition: background 0.15s;
}
input[type="file"].file-styled::file-selector-button:hover,
.file-styled::file-selector-button:hover { background: var(--green-700); }

/* Yes/No segmented toggle (radio buttons styled as buttons) */
.yn-toggle { display: flex; gap: 10px; }
.yn-toggle .yn-opt { flex: 1; position: relative; cursor: pointer; }
.yn-toggle .yn-opt input { position: absolute; opacity: 0; pointer-events: none; }
.yn-toggle .yn-opt span {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px; border: 2px solid var(--line); border-radius: 12px;
    font-weight: 700; color: var(--muted); transition: all 0.15s;
}
.yn-toggle .yn-opt input:checked + span {
    border-color: var(--green-500); background: var(--green-050); color: var(--green-900);
}
.btn-sm { padding: 8px 14px; font-size: 0.82rem; }

/* ------------------------------ Sections ----------------------------- */
.section { padding: 56px 0; }
.section-tight { padding: 36px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.section-head .eyebrow, .eyebrow {
    display: inline-block; font-size: 0.74rem; font-weight: 800; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--green-600); background: var(--green-100);
    padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
}
.section-head h2 { font-size: 1.8rem; color: var(--green-900); line-height: 1.2; }
.section-head p { color: var(--muted); margin-top: 10px; }

/* ------------------------- Hero (image-only slider) ------------------- */
.hero {
    background: linear-gradient(120deg, var(--green-900), var(--green-600));
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 26px 12px;
}
.hero-slide {
    width: 1000px;
    max-width: 100%;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #fff;
}
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Updates ticker (under slider, same 1000px width) */
.updates-ticker-wrap { display: flex; justify-content: center; background: var(--green-900); }
.updates-ticker {
    width: 1000px; max-width: 100%;
    display: flex; flex-direction: row; align-items: stretch;
    background: #0d2e1d;
}
.updates-ticker-label {
    flex: 0 0 auto;
    display: flex; align-items: center; gap: 8px;
    padding: 0 18px; min-height: 44px;
    font-weight: 700; font-size: 1.05rem; color: #fff;
    background: var(--green-600);
    border-left: 3px solid var(--green-400);
    white-space: nowrap;
    direction: rtl;
}
.updates-ticker-label i { font-size: 0.9rem; }
.updates-ticker-viewport {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    position: relative;
}
.updates-ticker-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex-shrink: 0;
    width: max-content;
    padding: 10px 0;
    will-change: transform;
}
.updates-ticker-set {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex-shrink: 0;
}
.updates-ticker-item {
    flex: 0 0 auto;
    color: #eafff2;
    font-size: 1.08rem;
    padding: 0 28px;
    white-space: nowrap;
    line-height: 1.8;
    direction: rtl;
    unicode-bidi: plaintext;
}
.updates-ticker-item::after {
    content: '◆';
    margin-left: 28px;
    color: var(--green-400);
    font-size: 0.55rem;
    vertical-align: middle;
}
.updates-ticker-item:last-child::after { content: none; }

.btn-lg { padding: 15px 26px; font-size: 1.02rem; }

@media (max-width: 720px) {
    .hero-slide { height: 220px; }
    .donate-banner .inner { flex-direction: column; text-align: center; }
}

/* Donation call-to-action (home) */
.donate-banner {
    background: linear-gradient(120deg, #c0392b, #e74c3c 45%, #d35400);
    color: #fff;
    padding: 18px 0;
    box-shadow: 0 4px 18px rgba(192, 57, 43, 0.25);
}
.donate-banner .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.donate-banner h3 {
    color: #fff;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.donate-banner p {
    color: rgba(255,255,255,0.92);
    font-size: 0.92rem;
    margin-top: 4px;
}
.btn-donate {
    background: #fff;
    color: #c0392b;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn-donate:hover { background: #fff8f0; color: #a93226; }

/* Public modal */
.gh-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 36, 24, 0.55);
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
    align-items: flex-start;
    justify-content: center;
}
.gh-modal.show {
    display: flex;
}
.gh-modal-content {
    background: #fff;
    width: 100%;
    max-width: 440px;
    margin: auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.gh-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(120deg, var(--green-900), var(--green-700));
    color: #fff;
}
.gh-modal-header h3 {
    margin: 0;
    font-size: 1.12rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.gh-modal-close {
    background: rgba(255,255,255,0.18);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
}
.gh-modal-close:hover { background: rgba(255,255,255,0.3); }
.gh-modal-body { padding: 22px 20px 24px; }
.gh-modal-body p { color: var(--muted); font-size: 0.95rem; }
.donate-modal-note {
    background: var(--green-050);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin: 14px 0 18px;
    text-align: center;
}
.donate-modal-note strong {
    display: block;
    color: var(--green-900);
    font-size: 1.05rem;
    margin-bottom: 6px;
}
.donate-modal-number {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.02em;
}
.donate-modal-number i { color: #25d366; margin-right: 8px; }
.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: var(--shadow-sm);
}
.btn-whatsapp:hover { background: #1da851; color: #fff; }

/* ------------------------------ Cards -------------------------------- */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 22px;
}
.card-pad-lg { padding: 28px; }

/* Service tiles */
.service-tile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
    height: 100%;
}
.service-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-100); }
.service-tile .ico {
    width: 50px; height: 50px; border-radius: 14px;
    display: grid; place-items: center;
    background: var(--green-100); color: var(--green-700);
    font-size: 1.4rem;
}
.service-tile h3 { font-size: 1.08rem; color: var(--green-900); }
.service-tile p { font-size: 0.9rem; color: var(--muted); flex: 1; }
.service-tile .go { font-weight: 700; font-size: 0.86rem; color: var(--green-600); }
.service-tile-featured {
    background: linear-gradient(145deg, #e8f4fd, #f1faf4);
    border: 2px solid var(--green-600);
    box-shadow: 0 8px 28px rgba(31, 154, 87, 0.18);
}
.service-tile-featured .ico {
    background: var(--green-600);
    color: #fff;
}
.service-tile-featured h3 { color: var(--green-900); font-weight: 700; }
.service-tile-featured:hover {
    border-color: var(--green-700);
    box-shadow: 0 12px 32px rgba(31, 154, 87, 0.24);
}

/* Priority services — always-visible feature cards */
.feature-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--fc, var(--green-500));
    height: 100%;
}
.feature-card .head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.feature-card .head .ico {
    width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
    background: var(--green-100); color: var(--fc, var(--green-700)); font-size: 1.2rem; flex-shrink: 0;
}
.feature-card h3 { font-size: 1.05rem; color: var(--green-900); }
.feature-card ul { list-style: none; }
.feature-card ul li { color: var(--muted); font-size: 0.9rem; padding: 5px 0 5px 20px; position: relative; border-bottom: 1px solid var(--green-050); }
.feature-card ul li:last-child { border-bottom: none; }
.feature-card ul li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--green-500); position: absolute; left: 0; font-size: 0.72rem; top: 8px; }

/* ------------------------------ Forms -------------------------------- */
.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px var(--green-100);
}
.field textarea { resize: vertical; min-height: 96px; }

/* Alerts / badges */
.alert { padding: 12px 14px; border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: 14px; }
.alert-success { background: var(--green-100); color: var(--green-900); border: 1px solid #bfe6cd; }
.alert-error { background: #fdecec; color: #a02020; border: 1px solid #f6c9c9; }
.alert-info { background: #eaf2fb; color: #1c4f8a; border: 1px solid #cfe0f5; }

.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 11px; border-radius: 999px; font-size: 0.76rem; font-weight: 700; }
.badge-paid { background: var(--green-100); color: var(--green-700); }
.badge-due { background: #fdeccd; color: #a86310; }
.badge-active { background: var(--green-100); color: var(--green-700); }
.badge-muted { background: #eef2f0; color: var(--muted); }

/* Tables */
.tbl { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.tbl th, .tbl td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--line); }
.tbl th { color: var(--muted); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; }
.tbl tr:last-child td { border-bottom: none; }

/* Months grid (GK bill) */
.months { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.month-cell {
    border: 1px solid var(--line); border-radius: 12px; padding: 12px; text-align: center; background: #fff;
}
.month-cell .m { font-weight: 700; font-size: 0.82rem; color: var(--ink); }
.month-cell .amt { font-size: 0.8rem; color: var(--muted); margin: 4px 0; }
.month-cell.paid { background: var(--green-050); border-color: #cdeed9; }
.month-cell.due { background: #fff8ee; border-color: #f3dcb4; }

/* QR + partners */
.qr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.qr-item { text-align: center; display: flex; flex-direction: column; align-items: center; }
.qr-item img { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 8px; box-shadow: var(--shadow-sm); margin: 0 auto; }
.qr-item span { display: block; margin-top: 8px; font-size: 0.82rem; font-weight: 700; color: var(--green-900); text-align: center; width: 100%; }

.partners { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: stretch; }
.partners-2row { grid-template-columns: repeat(6, 1fr); }
.partner-card img.logo-gk { height: 55px; }
.partner-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px 14px;
    display: grid;
    place-items: center;
    min-height: 110px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.15s, box-shadow 0.15s;
    border-top: 4px solid var(--pc, var(--green-500));
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.partner-card img { height: 74px; object-fit: contain; }

/* ------------------------------ Footer ------------------------------- */
.site-footer { background: var(--green-900); color: #cfe5d8; margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 0.9fr; gap: 22px; padding: 32px 0 22px; align-items: start; }
.footer-brand .footer-desc { font-size: 0.86rem; color: #b9d6c5; margin-top: 10px; line-height: 1.5; }
.footer-hours p, .footer-contact p { font-size: 0.86rem; margin-bottom: 6px; display: flex; align-items: center; gap: 9px; }
.footer-hours i, .footer-contact i { width: 18px; text-align: center; color: var(--green-400); flex-shrink: 0; }
.site-footer h5 { color: #fff; font-size: 0.9rem; margin-bottom: 10px; letter-spacing: 0.5px; }
.site-footer a { color: #cfe5d8; }
.site-footer a:hover { color: #fff; }
.site-footer .f-links { list-style: none; }
.site-footer .f-links li { margin-bottom: 8px; font-size: 0.9rem; }
.footer-qr { display: flex; flex-direction: column; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); padding: 12px; border-radius: 14px; text-align: center; }
.footer-qr img { width: 110px; border-radius: 10px; background: #fff; padding: 5px; }
.footer-qr small { font-size: 0.78rem; color: #b9d6c5; }
.footer-qr-col { display: flex; align-items: flex-start; justify-content: flex-end; }
@media (max-width: 720px) { .footer-qr-col { justify-content: center; } }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 16px 0; text-align: center; font-size: 0.82rem; color: #a9c8b6; }
.footer-bottom img { height: 22px; display: inline-block; vertical-align: middle; opacity: 0.8; margin-left: 6px; }

/* Page hero (inner pages) */
.page-hero {
    background: linear-gradient(120deg, var(--green-900), var(--green-700));
    color: #fff; padding: 44px 0; text-align: center;
}
.page-hero img.logo-badge { height: 64px; margin: 0 auto 14px; background:#fff; border-radius:14px; padding:8px; }
.page-hero h1 { font-size: 2rem; }
.page-hero p { opacity: 0.9; margin-top: 8px; }

/* Toast */
.toast {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
    background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 999px;
    font-size: 0.9rem; font-weight: 600; box-shadow: var(--shadow-lg);
    opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s; z-index: 500;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.muted { color: var(--muted); }
.hidden { display: none !important; }
.lead { font-size: 1.05rem; color: var(--muted); }
.coming-soon { text-align: center; padding: 70px 18px; }
.coming-soon .big-ico { font-size: 3.4rem; color: var(--green-400); margin-bottom: 14px; }
.coming-soon h2 { color: var(--green-900); font-size: 1.9rem; }

/* ------------------------------ Responsive --------------------------- */
@media (max-width: 960px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .partners { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 720px) {
    .nav-bar { display: none; }
    .nav-bar.open { display: block; }
    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .nav-links a { padding: 12px 14px; text-align: left; }
    .nav-toggle { display: grid; place-items: center; }
    .nav-actions { margin-left: 0; }
    .brand img { height: 56px; }
    .brand span { font-size: 0.95rem; }
    .particles { display: none; }
    .hero h1 { font-size: 1.9rem; }
    .section-head h2 { font-size: 1.5rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .months { grid-template-columns: repeat(2, 1fr); }
    .qr-grid { grid-template-columns: repeat(2, 1fr); }
    .partners { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .login-menu { width: 280px; right: -8px; }
}
