/* Org Care Neo UI Theme */

:root {
    --color-bg: #040516;
    --color-bg-alt: #080b24;
    --color-surface: rgba(15, 23, 42, 0.72);
    --color-surface-solid: #121c37;
    --color-card: rgba(30, 41, 78, 0.65);
    --color-primary: #6366f1;
    --color-primary-dark: #4c51bf;
    --color-accent: #22d3ee;
    --color-accent-soft: rgba(34, 211, 238, 0.18);
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-text: #f8fafc;
    --color-text-muted: #94a3b8;
    --color-border: rgba(148, 163, 184, 0.18);
    --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.35);
    --shadow-hover: 0 24px 60px rgba(59, 130, 246, 0.25);
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-pill: 999px;
    --blur-md: blur(18px);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.18), transparent 32%),
                radial-gradient(circle at 15% 20%, rgba(34, 211, 238, 0.2), transparent 40%),
                linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
    color: var(--color-text);
    line-height: 1.7;
    min-height: 100vh;
}

main {
    position: relative;
    z-index: 1;
}

a {
    color: var(--color-accent);
    text-decoration: none;
}

a:hover {
    color: var(--color-primary);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

section {
    padding: 5rem 0;
    position: relative;
}

.section-heading {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-heading .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-pill);
    background: rgba(99, 102, 241, 0.12);
    color: var(--color-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
}

.section-heading h2 {
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.85rem);
    color: var(--color-text);
    margin: 1.5rem 0 1rem;
}

.section-heading p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* Glass Navigation */
.navbar-glass {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(40, 49, 80, 0.72));
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.5rem;
    margin-top: 0.75rem;
    box-shadow: var(--shadow-soft);
}

.navbar-glass .navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--color-text);
}

.navbar-glass .brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-pill);
    background: rgba(34, 211, 238, 0.12);
    color: var(--color-accent);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.navbar-glass .nav-link {
    color: var(--color-text-muted);
    font-weight: 500;
    padding: 0.45rem 1rem;
    border-radius: var(--radius-pill);
    transition: all 0.25s ease;
}

.navbar-glass .nav-link:hover,
.navbar-glass .nav-link.active {
    color: var(--color-text);
    background: rgba(99, 102, 241, 0.18);
}

.navbar-glass .btn-primary {
    border-radius: var(--radius-pill);
    padding: 0.55rem 1.4rem;
}

/* Hero */
.hero {
    padding-top: 8rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
    z-index: -1;
}

.hero::before {
    background: rgba(99, 102, 241, 0.65);
    top: -80px;
    left: -120px;
}

.hero::after {
    background: rgba(34, 211, 238, 0.55);
    bottom: -120px;
    right: -160px;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(34, 211, 238, 0.14);
    color: var(--color-accent);
    border-radius: var(--radius-pill);
    padding: 0.5rem 1.15rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero h1 {
    font-size: clamp(2.8rem, 4.8vw, 3.8rem);
    font-weight: 700;
    margin: 1.75rem 0 1.25rem;
}

.hero p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero-metric {
    display: flex;
    gap: 0.9rem;
    padding: 1rem 1.4rem;
    border-radius: var(--radius-md);
    background: rgba(148, 163, 184, 0.06);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
}

.hero-visual {
    position: relative;
}

.hero-visual .grid {
    position: absolute;
    inset: 12%;
    border-radius: var(--radius-lg);
    background: rgba(99, 102, 241, 0.18);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(99, 102, 241, 0.18);
    mask-image: radial-gradient(circle at 50% 50%, black 60%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

.hero-card {
    position: relative;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.72));
    border: 1px solid rgba(99, 102, 241, 0.25);
    box-shadow: var(--shadow-soft);
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* Buttons */
.btn {
    border: none;
    border-radius: var(--radius-pill);
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.75rem 1.6rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-text);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    filter: brightness(1.05);
}

.btn-outline-light {
    border: 1px solid rgba(148, 163, 184, 0.35) !important;
    color: var(--color-text);
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(148, 163, 184, 0.12);
}

.btn-soft {
    background: rgba(99, 102, 241, 0.12);
    color: var(--color-text);
}

/* Cards */
.glass-card {
    position: relative;
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    background: var(--color-card);
    backdrop-filter: blur(18px);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: var(--shadow-hover);
}

.glass-card p {
    color: var(--color-text-muted);
}

.icon-stack {
    width: 66px;
    height: 66px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: rgba(99, 102, 241, 0.18);
    color: var(--color-accent);
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
}

/* Stats */
.stats-bar {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: rgba(15, 23, 42, 0.65);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-card span {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Industries Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.industry-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    background: rgba(148, 163, 184, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: var(--color-text-muted);
    font-weight: 500;
}

.industry-chip i {
    color: var(--color-accent);
}

/* Testimonials */
.testimonial-card {
    padding: 2.2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.55));
    border: 1px solid rgba(99, 102, 241, 0.25);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.18), transparent 55%);
    pointer-events: none;
}

.testimonial-card p {
    color: var(--color-text-muted);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.75rem;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    border: 2px solid rgba(99, 102, 241, 0.45);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0.35rem;
    bottom: 0.35rem;
    left: 1.05rem;
    width: 2px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.6), rgba(34, 211, 238, 0.35));
}

.timeline-step {
    position: relative;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.35rem;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.timeline-step::before {
    content: attr(data-step);
    position: absolute;
    left: -2.4rem;
    top: 1.4rem;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    font-weight: 600;
}

/* Forms */
.form-control, .form-select, textarea.form-control {
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: var(--color-text);
}

.form-control:focus, .form-select:focus {
    border-color: rgba(34, 211, 238, 0.75);
    box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.18);
    background: rgba(8, 11, 26, 0.85);
}

.form-label {
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 0.4rem;
}

textarea {
    min-height: 160px;
    resize: vertical;
}

/* FAQ */
.faq-item {
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 1.5rem;
}

.faq-item + .faq-item {
    margin-top: 1rem;
}

.faq-item h5 {
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--color-text-muted);
}

/* Footer */
footer {
    background: transparent;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    margin-top: 5rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

footer h5 {
    font-weight: 600;
    color: var(--color-text);
}

footer a {
    color: var(--color-text-muted);
}

footer a:hover {
    color: var(--color-accent);
}

.footer-meta {
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    padding-top: 1.5rem;
    margin-top: 2.5rem;
    color: var(--color-text-muted);
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-pill);
    background: rgba(99, 102, 241, 0.22);
    color: var(--color-text);
    font-size: 0.8rem;
}

.text-accent {
    color: var(--color-accent) !important;
}

.text-accent:hover {
    color: var(--color-primary) !important;
}

.text-dark,
.text-black,
.text-body,
.text-body-secondary,
.text-body-emphasis {
    color: var(--color-text) !important;
}

.text-muted,
.text-body-tertiary {
    color: var(--color-text-muted) !important;
}

.list-checks {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.list-checks li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
    color: var(--color-text-muted);
}

.list-checks i {
    color: var(--color-accent);
    margin-top: 0.25rem;
}

.grid-gap-3 {
    display: grid;
    gap: 1.25rem;
}

.avatar-ring {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.25);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    align-items: center;
}

.clients-grid .client-tile {
    background: rgba(15, 23, 42, 0.55);
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.18);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.clients-grid .client-tile:hover {
    transform: translateY(-4px);
}

/* Contact CTA */
.contact-cta {
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.35), rgba(34, 211, 238, 0.18));
    border: 1px solid rgba(148, 163, 184, 0.22);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at right, rgba(255, 255, 255, 0.18), transparent 55%);
    pointer-events: none;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 100;
}

.whatsapp-float .btn {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0acf83, #20e07b);
    box-shadow: 0 16px 45px rgba(16, 185, 129, 0.4);
}

/* Shapes */
.blob {
    position: absolute;
    inset: auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.35), transparent 65%);
    filter: blur(40px);
    z-index: -1;
}

.blob.blob-cyan {
    background: radial-gradient(circle, rgba(34, 211, 238, 0.35), transparent 65%);
}

/* Tables */
.table-dark-glass {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(15, 23, 42, 0.65);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.table-dark-glass th,
.table-dark-glass td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    color: var(--color-text-muted);
}

.table-dark-glass th {
    color: var(--color-text);
    background: rgba(99, 102, 241, 0.18);
    font-weight: 600;
}

.table-dark-glass tr:last-child td {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 991.98px) {
    .navbar-glass {
        margin: 0;
        border-radius: 0;
    }

    .hero {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .hero-card {
        margin-top: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    body {
        line-height: 1.6;
    }

    section {
        padding: 3.5rem 0;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-metric {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .section-heading {
        text-align: left;

    }

    .stats-bar {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .whatsapp-float {
        right: 20px;
        bottom: 20px;
    }
}
