/* =====================================================
   JOBFLOW SUPPORT / PRIVACY PAGES — Nick Handyman Services LLC
   Shared styling for standalone JobFlow app pages.
   Follows the same navy + gold visual language as request.css.
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg-base:     #0d1f3c;
    --bg-dark:     #091528;
    --bg-card:     #152d52;
    --bg-input:    #0f2444;
    --gold:        #d49200;
    --gold-light:  #f0b400;
    --gold-dark:   #a06c00;
    --gold-sub:    rgba(212,146,0,0.10);
    --gold-border: rgba(212,146,0,0.30);
    --cream:       #f0e6cc;
    --cream-dim:   #c0a870;
    --border:      rgba(255,255,255,0.09);
    --white:       #ffffff;
    --radius:      8px;
    --radius-lg:   14px;
    --transition:  0.22s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--bg-dark);
    color: var(--cream);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────────────────── */
.jf-nav {
    background: rgba(9,21,40,0.96);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.jf-nav-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jf-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.jf-logo-img {
    height: 40px;
    width: auto;
}

.jf-brand {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--cream);
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.jf-brand-sub {
    font-weight: 600;
    color: var(--cream-dim);
    font-size: 0.78rem;
}

.jf-back-link {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--cream-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color var(--transition);
    flex-shrink: 0;
}

.jf-back-link:hover { color: var(--gold-light); }

/* ── MAIN LAYOUT ─────────────────────────────────── */
.jf-main {
    flex: 1;
    padding: 56px 24px 80px;
}

.jf-container {
    max-width: 820px;
    margin: 0 auto;
}

/* ── HEADER ──────────────────────────────────────── */
.jf-header {
    text-align: center;
    margin-bottom: 40px;
}

.jf-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-sub);
    border: 1px solid var(--gold-border);
    border-radius: 4px;
    padding: 4px 12px;
    margin-bottom: 16px;
}

.jf-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 12px;
    line-height: 1.2;
}

.jf-sub {
    font-size: 1rem;
    color: var(--cream-dim);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

.jf-updated {
    font-size: 0.82rem;
    color: rgba(192,168,112,0.55);
    margin-top: 14px;
}

/* ── CONTENT CARD ────────────────────────────────── */
.jf-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    margin-bottom: 28px;
}

@media (max-width: 600px) {
    .jf-card { padding: 28px 20px; }
}

.jf-card + .jf-card { margin-top: -4px; }

.jf-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-light);
    margin: 30px 0 12px;
}

.jf-card h2:first-child { margin-top: 0; }

.jf-card h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cream);
    margin: 20px 0 8px;
}

.jf-card p {
    font-size: 0.95rem;
    color: var(--cream-dim);
    line-height: 1.75;
    margin-bottom: 14px;
}

.jf-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 4px 0 18px;
}

.jf-card ul li {
    font-size: 0.93rem;
    color: var(--cream-dim);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.jf-card ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.jf-card ul.jf-plain li::before { content: '\2022'; font-weight: 400; }

.jf-card a {
    color: var(--gold-light);
    text-decoration: underline;
    text-decoration-color: rgba(240,180,0,0.35);
    text-underline-offset: 2px;
    transition: color var(--transition);
}

.jf-card a:hover { color: var(--gold); }

.jf-card strong { color: var(--cream); }

/* ── EMAIL / CONTACT CALLOUT ─────────────────────── */
.jf-contact-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--gold-sub);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 8px 0 18px;
}

.jf-contact-box p {
    margin: 0;
    color: var(--cream);
    font-size: 0.93rem;
}

.jf-btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    background: linear-gradient(180deg, #f5c030 0%, #d49200 52%, #a86c00 100%);
    color: #0a0800;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    border-radius: var(--radius);
    text-decoration: none !important;
    transition: opacity var(--transition), transform var(--transition);
    box-shadow: 0 2px 12px rgba(212,146,0,0.40), inset 0 1px 0 rgba(255,255,255,0.28);
    white-space: nowrap;
}

.jf-btn-gold:hover { opacity: 0.92; transform: translateY(-1px); }

/* ── CROSS-LINK NOTE ─────────────────────────────── */
.jf-crosslink {
    text-align: center;
    font-size: 0.9rem;
    color: var(--cream-dim);
    padding: 4px 0 8px;
}

/* ── FOOTER ──────────────────────────────────────── */
.jf-footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 20px 24px;
}

.jf-footer-inner {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(192,168,112,0.45);
}

.jf-footer-inner a {
    color: rgba(192,168,112,0.6);
    text-decoration: none;
}

.jf-footer-inner a:hover { color: var(--gold-light); }
