/* ================================================================
   Shujaiz Solutions — Public Site Stylesheet
   Dark professional IT consultancy theme
   ================================================================ */

:root {
    --bg-dark:      #0a0e1a;
    --bg-card:      #111827;
    --bg-card2:     #0f172a;
    --border:       #1f2937;
    --text:         #f9fafb;
    --text-muted:   #9ca3af;
    --accent:       #3b82f6;
    --accent-hover: #2563eb;
    --gold:         #f59e0b;
    --nav-bg:       rgba(10, 14, 26, 0.95);
    font-family: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
    background: var(--bg-dark);
    color: var(--text);
    margin: 0;
    padding-top: 72px;
}

/* ── NAVBAR ──────────────────────────────────────────────────── */
.sz-navbar {
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.85rem 0;
}
.sz-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text) !important;
    letter-spacing: -.5px;
    text-decoration: none;
}
.sz-brand .brand-mark {
    color: var(--accent);
    font-size: 1.4em;
}
.sz-brand .brand-light { font-weight: 300; opacity: .7; }

.sz-navbar .nav-link {
    color: #cbd5e1 !important;
    font-size: .9rem;
    font-weight: 500;
    padding: .5rem .75rem !important;
    border-radius: 6px;
    transition: color .2s, background .2s;
}
.sz-navbar .nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,.06);
}
.navbar-toggler { border-color: var(--border); }
.navbar-toggler-icon { filter: invert(1); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.sz-btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: .55rem 1.4rem;
    transition: background .2s, transform .1s;
}
.sz-btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
    transform: translateY(-1px);
}
.sz-btn-outline {
    border: 1.5px solid var(--accent);
    color: var(--accent);
    border-radius: 8px;
    padding: .55rem 1.4rem;
    font-weight: 600;
    background: transparent;
    transition: background .2s, color .2s;
}
.sz-btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

/* ── HERO ────────────────────────────────────────────────────── */
.sz-hero {
    min-height: 90vh;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(59,130,246,.18) 0%, transparent 70%),
        var(--bg-dark);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.sz-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.sz-hero-pre {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}
.sz-hero-heading {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 1.5rem;
}
.sz-hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 540px;
    line-height: 1.7;
}
.text-accent { color: var(--accent) !important; }

.hero-badge-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}
.hero-badge {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: .95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: .75rem;
    transition: border-color .3s, color .3s;
    animation: floatIn .6s ease both;
}
.hero-badge:nth-child(2) { animation-delay: .1s; }
.hero-badge:nth-child(3) { animation-delay: .2s; }
.hero-badge:nth-child(4) { animation-delay: .3s; }
.hero-badge:hover { border-color: var(--accent); color: var(--text); }
.hero-badge i { color: var(--accent); font-size: 1.1em; }

@keyframes floatIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ── STATS BAR ───────────────────────────────────────────────── */
.sz-stats-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.stat-label {
    font-size: .8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: .4rem;
}

/* ── SECTIONS ────────────────────────────────────────────────── */
.sz-section { padding: 5rem 0; }
.sz-section-dark {
    background:
        linear-gradient(135deg, rgba(59,130,246,.04) 0%, transparent 60%),
        var(--bg-card2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.section-tag {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: .75rem;
}
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: .75rem;
}
.section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
}
.section-header { margin-bottom: 3rem; }

/* ── SERVICE CARDS ───────────────────────────────────────────── */
.sz-service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: border-color .3s, transform .3s;
    position: relative;
}
.sz-service-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}
.sz-service-card.featured {
    border-color: rgba(59,130,246,.4);
    background: linear-gradient(135deg, rgba(59,130,246,.07) 0%, var(--bg-card) 60%);
}
.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 20px;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(59,130,246,.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
}
.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .75rem;
}
.service-desc {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.service-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.sz-tag {
    font-size: .7rem;
    font-weight: 600;
    background: rgba(59,130,246,.12);
    color: var(--accent);
    border: 1px solid rgba(59,130,246,.2);
    padding: .2rem .6rem;
    border-radius: 20px;
    letter-spacing: .3px;
}

/* ── FULL SERVICE CARDS (services page) ─────────────────────── */
.sz-service-card-full {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: border-color .3s;
}
.sz-service-card-full:hover { border-color: rgba(59,130,246,.4); }
.sz-service-card-full.featured { border-color: rgba(59,130,246,.5); }
.service-icon-lg {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(59,130,246,.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
}
.service-card-title { font-size: 1.2rem; font-weight: 700; margin-bottom: .75rem; }
.service-card-desc { color: var(--text-muted); font-size: .9rem; line-height: 1.65; }

/* ── IDENTITY SECTION ────────────────────────────────────────── */
.pillars { display: flex; flex-direction: column; gap: .75rem; }
.pillar {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .95rem;
    font-weight: 600;
    color: var(--text-muted);
}
.pillar i { color: var(--accent); font-size: 1.1em; }
.lead-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
}
.about-feature {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .875rem;
    color: var(--text-muted);
}
.about-feature i { color: var(--accent); }

/* ── CTA SECTION ─────────────────────────────────────────────── */
.sz-cta {
    padding: 6rem 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(59,130,246,.12) 0%, transparent 70%),
        var(--bg-dark);
}
.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 1rem;
}
.cta-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.sz-page-hero {
    padding: 5rem 0 3.5rem;
    background:
        radial-gradient(ellipse 70% 100% at 50% -20%, rgba(59,130,246,.15) 0%, transparent 70%),
        var(--bg-dark);
    border-bottom: 1px solid var(--border);
}
.sz-page-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -.04em;
    margin: .5rem 0 1rem;
}
.sz-page-hero-sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
}

/* ── CAREERS PAGE ────────────────────────────────────────────── */
.dept-heading {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}
.dept-icon { color: var(--accent); }

.sz-job-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .3s, transform .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.sz-job-card:hover { border-color: rgba(59,130,246,.4); transform: translateY(-2px); }
.job-card-body { padding: 1.5rem; flex: 1; }
.job-title { font-size: 1rem; font-weight: 700; margin-bottom: .75rem; }
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1rem;
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: .75rem;
}
.job-meta i { color: var(--accent); }
.job-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.job-card-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--border); }

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.check-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .9rem;
    color: var(--text-muted);
}
.check-list li i { color: var(--accent); }

/* ── FORMS (public) ──────────────────────────────────────────── */
.sz-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}
.form-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.form-control, .form-select {
    background: #0f172a;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 8px;
}
.form-control:focus, .form-select:focus {
    background: #0f172a;
    border-color: var(--accent);
    color: var(--text);
    box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}
.form-control::placeholder { color: #4b5563; }
.form-label { font-size: .85rem; font-weight: 500; color: #d1d5db; margin-bottom: .4rem; }
.form-check-label { font-size: .875rem; color: var(--text-muted); }
.form-check-input:checked { background-color: var(--accent); border-color: var(--accent); }

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-info-block { padding: 1rem 0; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(59,130,246,.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
}
.contact-label { font-size: .75rem; color: var(--text-muted); margin-bottom: .2rem; }
.contact-item a { color: var(--text); text-decoration: none; font-weight: 500; }
.contact-item a:hover { color: var(--accent); }

/* ── MODAL ───────────────────────────────────────────────────── */
.sz-modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--text);
}
.sz-modal .modal-header {
    border-bottom-color: var(--border);
    padding: 1.25rem 1.5rem;
}
.sz-modal .modal-footer { border-top-color: var(--border); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.sz-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding-top: 4rem;
    margin-top: 0;
}
.footer-heading {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.footer-links li, .footer-links a {
    font-size: .875rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    margin-top: 2rem;
}

/* ── TOAST ───────────────────────────────────────────────────── */
#sz-toast { background: #1e293b; color: #f1f5f9; border-radius: 12px; min-width: 280px; }
#sz-toast.toast-success { border-left: 4px solid #22c55e; }
#sz-toast.toast-error   { border-left: 4px solid #ef4444; }
