/*
Theme Name: QuickCore IT Solutions
Theme URI: https://quickcore.com
Author: QuickCore IT Solutions
Description: Custom WordPress theme for QuickCore IT Solutions.
Version: 1.0
Text Domain: quickcore
*/


/* =========================================================
   1. ROOT / GLOBAL
========================================================= */

:root {
    --qc-bg: #071426;
    --qc-bg-dark: #04101f;
    --qc-bg-card: #0d1c30;
    --qc-bg-card-light: #112238;

    --qc-blue: #1677ff;
    --qc-blue-light: #43a0ff;
    --qc-blue-soft: #eaf3ff;

    --qc-white: #ffffff;
    --qc-text: #e8eef7;
    --qc-muted: #9fb0c6;

    --qc-border: rgba(255, 255, 255, 0.10);
    --qc-border-blue: rgba(56, 139, 253, 0.35);

    --qc-radius: 18px;
    --qc-radius-small: 12px;

    --qc-shadow: 0 20px 55px rgba(0, 0, 0, 0.20);

    --qc-container: 1240px;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;

    background: var(--qc-bg);

    color: var(--qc-text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size: 16px;
    line-height: 1.65;

    -webkit-font-smoothing: antialiased;
}


body,
button,
input,
textarea,
select {
    font-family: inherit;
}


img {
    max-width: 100%;
    height: auto;
}


a {
    color: inherit;
    text-decoration: none;
}


p {
    margin-top: 0;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff;
    margin-top: 0;
    line-height: 1.15;
}


h1 {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
}


h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
}


h3 {
    font-size: 21px;
    font-weight: 700;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   2. CONTAINER
========================================================= */

.qc-container {
    width: min(100% - 48px, var(--qc-container));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   3. HEADER
========================================================= */

.site-header,
.qc-header {
    position: sticky;
    top: 0;
    z-index: 9999;

    width: 100%;

    background: rgba(4, 16, 31, 0.96);

    border-bottom: 1px solid var(--qc-border);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}


.qc-header-inner,
.site-header-inner {
    width: min(100% - 48px, var(--qc-container));

    min-height: 78px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


.site-logo,
.qc-logo {
    display: inline-flex;
    align-items: center;

    color: #ffffff;

    font-size: 21px;
    font-weight: 800;

    letter-spacing: 0.04em;

    white-space: nowrap;
}


.site-logo img,
.qc-logo img,
.custom-logo {
    display: block;

    max-height: 52px;
    width: auto;
}


/* =========================================================
   4. NAVIGATION
========================================================= */

.primary-navigation,
.qc-nav {
    display: flex;
    align-items: center;
}


.primary-navigation ul,
.qc-nav ul,
.qc-menu {
    display: flex;
    align-items: center;

    gap: 5px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.primary-navigation li,
.qc-nav li,
.qc-menu li {
    position: relative;
}


.primary-navigation a,
.qc-nav a,
.qc-menu a {
    display: block;

    padding: 11px 13px;

    color: #cbd7e8;

    font-size: 14px;
    font-weight: 500;

    transition: color .2s ease;
}


.primary-navigation a:hover,
.qc-nav a:hover,
.qc-menu a:hover,
.current-menu-item > a {
    color: #ffffff;
}


/* =========================================================
   5. HEADER BUTTON
========================================================= */

.qc-header-cta,
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 21px;

    border-radius: 9px;

    background: linear-gradient(
        135deg,
        #1677ff,
        #075dc9
    );

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.qc-header-cta:hover,
.header-cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 30px rgba(22,119,255,.25);
}


/* =========================================================
   6. MOBILE MENU
========================================================= */

.qc-menu-toggle,
.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 1px solid var(--qc-border);

    border-radius: 9px;

    background: #0c1c30;

    color: #ffffff;

    cursor: pointer;
}


/* =========================================================
   7. HERO
========================================================= */

.qc-hero {
    position: relative;

    padding: 105px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(19, 112, 255, 0.14),
            transparent 34%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(0, 174, 255, 0.07),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #071426 0%,
            #061321 100%
        );
}


.qc-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(380px, .9fr);

    gap: 70px;

    align-items: center;
}


.qc-hero-content {
    position: relative;
    z-index: 2;
}


.qc-eyebrow,
.qc-section-label {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--qc-blue-light);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: .14em;

    text-transform: uppercase;
}


.qc-hero h1 {
    max-width: 780px;

    margin-bottom: 25px;

    letter-spacing: -0.035em;
}


.qc-hero-text {
    max-width: 690px;

    margin-bottom: 32px;

    color: #b9c8da;

    font-size: 19px;

    line-height: 1.75;
}


.qc-hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 30px;
}


/* =========================================================
   8. BUTTONS
========================================================= */

.qc-btn-primary,
.qc-btn-secondary {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 25px;

    border-radius: 9px;

    font-size: 15px;
    font-weight: 700;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.qc-btn-primary {
    background: linear-gradient(
        135deg,
        #1677ff,
        #0965dc
    );

    color: #ffffff;

    border: 1px solid #1677ff;
}


.qc-btn-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 34px rgba(22,119,255,.25);
}


.qc-btn-secondary {
    color: #ffffff;

    border: 1px solid rgba(255,255,255,.23);

    background: rgba(255,255,255,.025);
}


.qc-btn-secondary:hover {
    transform: translateY(-2px);

    border-color: rgba(255,255,255,.50);
}


/* =========================================================
   9. HERO TRUST
========================================================= */

.qc-hero-trust {
    margin-top: 30px;

    display: flex;
    flex-wrap: wrap;

    gap: 11px;
}


.qc-hero-trust span {
    padding: 8px 13px;

    border-radius: 100px;

    border: 1px solid rgba(255,255,255,.10);

    background: rgba(255,255,255,.035);

    color: #bac9dc;

    font-size: 13px;
}


/* =========================================================
   10. HERO VISUAL
========================================================= */

.qc-hero-visual {
    position: relative;

    min-height: 390px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.qc-hero-image {
    width: 100%;

    overflow: hidden;

    border-radius: 22px;

    border: 1px solid var(--qc-border);

    box-shadow: var(--qc-shadow);
}


.qc-hero-image img {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 360px;

    object-fit: cover;
}


.qc-visual-card {
    position: relative;

    width: 100%;

    padding: 28px;

    border-radius: 20px;

    border: 1px solid rgba(56,139,253,.25);

    background:
        linear-gradient(
            145deg,
            rgba(18,39,65,.97),
            rgba(8,23,42,.97)
        );

    box-shadow:
        0 25px 65px rgba(0,0,0,.30);
}


.qc-visual-header {
    padding-bottom: 18px;

    margin-bottom: 22px;

    border-bottom: 1px solid var(--qc-border);

    color: #ffffff;

    font-weight: 700;
}


.qc-visual-dot {
    display: inline-block;

    width: 9px;
    height: 9px;

    margin-right: 8px;

    border-radius: 50%;

    background: var(--qc-blue);
}


.qc-visual-body {
    display: grid;
    gap: 13px;
}


.qc-stat-box {
    padding: 17px;

    border-radius: 12px;

    border: 1px solid var(--qc-border);

    background: rgba(255,255,255,.025);
}


.qc-stat-box span {
    display: block;

    margin-bottom: 4px;

    color: var(--qc-muted);

    font-size: 13px;
}


.qc-stat-box strong {
    color: #ffffff;

    font-size: 17px;
}


.qc-floating-card {
    position: absolute;

    padding: 10px 16px;

    border: 1px solid rgba(59, 150, 255, .30);

    border-radius: 100px;

    background: rgba(10, 29, 50, .96);

    color: #dbe9fb;

    font-size: 13px;
    font-weight: 600;

    box-shadow:
        0 14px 30px rgba(0,0,0,.18);
}


.qc-floating-one {
    top: 5%;
    right: -2%;
}


.qc-floating-two {
    bottom: 8%;
    left: -4%;
}


/* =========================================================
   11. GENERAL SECTIONS
========================================================= */

.qc-section {
    padding: 90px 0;

    background: #071426;
}


.qc-section-dark {
    background: #051221;
}


.qc-section-light {
    background: #ffffff;

    color: #071426;
}


.qc-section > .qc-container > h2,
.qc-section .qc-section-heading h2 {
    max-width: 820px;

    margin-bottom: 20px;
}


.qc-section > .qc-container > p {
    max-width: 780px;

    color: var(--qc-muted);

    line-height: 1.75;
}


/* =========================================================
   12. CARDS
========================================================= */

.qc-cards {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;

    margin-top: 40px;
}


.qc-card {
    position: relative;

    padding: 27px;

    border-radius: 15px;

    border: 1px solid var(--qc-border);

    background: #0d1c30;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


.qc-card:hover {
    transform: translateY(-5px);

    border-color: rgba(56,139,253,.38);

    box-shadow:
        0 18px 40px rgba(0,0,0,.16);
}


.qc-card h3 {
    margin-bottom: 12px;
}


.qc-card p {
    margin: 0;

    color: #aebed1;

    line-height: 1.7;
}


/* =========================================================
   13. MINI GRID
========================================================= */

.qc-mini-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 15px;

    margin-top: 34px;
}


.qc-mini-card {
    padding: 20px;

    border-radius: 13px;

    border: 1px solid var(--qc-border);

    background: #0c1b2e;

    color: #ffffff;

    font-weight: 600;
}


/* =========================================================
   14. SERVICES GRID
========================================================= */

.qc-services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 20px;

    margin-top: 40px;
}


.qc-service-card {
    min-height: 220px;

    padding: 28px;

    display: flex;
    flex-direction: column;

    border-radius: 16px;

    border: 1px solid var(--qc-border);

    background: #0c1b2e;

    transition:
        transform .25s ease,
        border-color .25s ease;
}


.qc-service-card:hover {
    transform: translateY(-5px);

    border-color: rgba(52,145,255,.40);
}


.qc-service-card h3 {
    margin-bottom: 12px;
}


.qc-service-card p {
    color: #aebed1;

    line-height: 1.7;
}


.qc-service-card a {
    margin-top: auto;

    color: var(--qc-blue-light);

    font-weight: 700;
}


/* =========================================================
   15. TAGS / SPECIALTIES
========================================================= */

.qc-tags,
.qc-specialties-grid {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}


.qc-tags span,
.qc-specialty-item {
    padding: 11px 16px;

    border-radius: 9px;

    border: 1px solid var(--qc-border);

    background: #0c1b2e;

    color: #d5dfec;

    font-size: 14px;
}


/* =========================================================
   16. CTA
========================================================= */

.qc-cta {
    padding: 85px 0;

    text-align: center;

    background:
        radial-gradient(
            circle at center top,
            rgba(22,119,255,.15),
            transparent 45%
        ),
        #061321;
}


.qc-cta h2 {
    max-width: 800px;

    margin:
        0 auto
        18px;
}


.qc-cta p {
    max-width: 720px;

    margin:
        0 auto
        28px;

    color: #aebed1;

    font-size: 17px;
}


/* =========================================================
   17. FORMS
========================================================= */

.qc-contact-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(320px, .75fr);

    gap: 28px;

    align-items: stretch;
}


.qc-contact-form-card,
.qc-contact-info-card {
    padding: 32px;

    border-radius: 18px;

    border: 1px solid var(--qc-border);

    background: #0b1b2e;
}


.qc-contact-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 18px;

    margin-top: 25px;
}


.qc-field-full {
    grid-column: 1 / -1;
}


.qc-field label {
    display: block;

    margin-bottom: 7px;

    color: #dce6f2;

    font-size: 14px;
    font-weight: 600;
}


.qc-field input,
.qc-field select,
.qc-field textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 9px;

    outline: none;

    background: #071426;

    color: #ffffff;

    font-size: 15px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.qc-field input:focus,
.qc-field select:focus,
.qc-field textarea:focus {
    border-color: #1677ff;

    box-shadow:
        0 0 0 3px rgba(22,119,255,.10);
}


.qc-field textarea {
    min-height: 150px;

    resize: vertical;
}


.qc-field select option {
    color: #111111;

    background: #ffffff;
}


.qc-contact-actions {
    margin-top: 20px;
}


.qc-contact-note {
    margin-top: 20px;

    color: var(--qc-muted);

    font-size: 13px;
}


/* =========================================================
   18. CONTACT INFORMATION
========================================================= */

.qc-contact-info-card h3 {
    margin-bottom: 20px;
}


.qc-contact-item {
    padding: 15px 0;

    border-bottom: 1px solid var(--qc-border);
}


.qc-contact-item:last-child {
    border-bottom: 0;
}


.qc-contact-item strong {
    display: block;

    margin-bottom: 4px;

    color: #ffffff;
}


.qc-contact-item span,
.qc-contact-item a {
    color: #aebed1;
}


/* =========================================================
   19. MAP
========================================================= */

.qc-map-wrap {
    margin-top: 25px;

    overflow: hidden;

    border-radius: 14px;

    border: 1px solid var(--qc-border);
}


.qc-map-wrap iframe {
    display: block;

    width: 100%;
    height: 300px;

    border: 0;
}


.qc-map-caption {
    padding: 12px 14px;

    border-top: 1px solid var(--qc-border);

    background: #0b1b2e;

    color: #9fb4cc;

    font-size: 13px;
}


/* =========================================================
   20. NOTICE
========================================================= */

.qc-contact-notice {
    width: min(100% - 48px, var(--qc-container));

    margin: 25px auto;

    padding: 15px 18px;

    border-radius: 10px;
}


.qc-contact-notice.success {
    border: 1px solid rgba(50,205,125,.35);

    background: rgba(50,205,125,.10);

    color: #a9efca;
}


.qc-contact-notice.error {
    border: 1px solid rgba(255,91,91,.35);

    background: rgba(255,91,91,.10);

    color: #ffb4b4;
}


/* =========================================================
   21. RCM PROCESS
========================================================= */

.rcm-process-section {
    padding: 95px 24px;

    background: #ffffff;

    color: #071426;
}


.rcm-container {
    width: 100%;

    max-width: 1380px;

    margin: 0 auto;
}


.rcm-section-heading {
    max-width: 850px;

    margin:
        0 auto
        55px;

    text-align: center;
}


.rcm-eyebrow {
    position: relative;

    display: inline-flex;
    align-items: center;

    margin-bottom: 12px;

    color: #1461c9;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.rcm-section-heading h2 {
    margin:
        0 0
        16px;

    color: #061631;

    font-size: clamp(38px,5vw,58px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -0.025em;
}


.rcm-section-heading p {
    max-width: 760px;

    margin: 0 auto;

    color: #52627a;

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================================
   22. RCM GRID
========================================================= */

.rcm-process-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 24px;
}


/* =========================================================
   23. RCM CARD
========================================================= */

.rcm-process-card {
    position: relative;

    min-height: 295px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #dbe7f7;

    border-radius: 18px;

    box-shadow:
        0 8px 30px
        rgba(7,20,38,.05);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.rcm-process-card:hover {
    transform: translateY(-6px);

    border-color: #afcef7;

    box-shadow:
        0 18px 45px
        rgba(7,20,38,.10);
}


/* =========================================================
   24. RCM CARD TOP
========================================================= */

.rcm-card-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;
}


/* =========================================================
   25. RCM ICON
========================================================= */

.rcm-icon {
    width: 82px;
    height: 82px;

    flex: 0 0 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #f3f7ff,
            #e7f0ff
        );
}


.rcm-icon svg {
    width: 42px;
    height: 42px;

    fill: none;

    stroke: #1261c9;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   26. RCM NUMBER
========================================================= */

.rcm-number {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #1677ff,
            #0759b8
        );

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;
}


/* =========================================================
   27. RCM TEXT
========================================================= */

.rcm-process-card h3 {
    margin:
        0 0
        13px;

    color: #071426;

    font-size: 21px;

    line-height: 1.3;

    font-weight: 750;
}


.rcm-process-card p {
    margin: 0;

    color: #53627a;

    font-size: 15px;

    line-height: 1.72;
}


/* =========================================================
   28. FOOTER
========================================================= */

.site-footer,
.qc-footer {
    padding:
        65px 0
        25px;

    background: #030d19;

    border-top: 1px solid var(--qc-border);
}


.qc-footer-grid,
.footer-grid {
    width: min(100% - 48px, var(--qc-container));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        1fr
        1fr;

    gap: 40px;
}


.qc-footer h3,
.qc-footer h4,
.site-footer h3,
.site-footer h4 {
    margin-bottom: 16px;
}


.qc-footer p,
.qc-footer a,
.site-footer p,
.site-footer a {
    color: #98aabd;

    font-size: 14px;
}


.qc-footer a:hover,
.site-footer a:hover {
    color: #ffffff;
}


.qc-footer ul,
.site-footer ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.qc-footer li,
.site-footer li {
    margin-bottom: 9px;
}


.qc-footer-bottom,
.footer-bottom {
    width: min(100% - 48px, var(--qc-container));

    margin:
        45px auto
        0;

    padding-top: 22px;

    border-top: 1px solid var(--qc-border);

    color: #778ba3;

    font-size: 13px;

    text-align: center;
}


/* =========================================================
   29. WORDPRESS
========================================================= */

.alignwide {
    width: min(100% - 48px, 1400px);

    margin-left: auto;
    margin-right: auto;
}


.alignfull {
    width: 100%;
}


.wp-caption {
    max-width: 100%;
}


/* =========================================================
   30. TABLET
========================================================= */

@media (max-width: 1050px) {

    .qc-hero-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .qc-hero-visual {
        min-height: 320px;
    }


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


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


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


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

}


/* =========================================================
   31. MOBILE NAVIGATION
========================================================= */

@media (max-width: 850px) {

    .qc-header-inner,
    .site-header-inner {
        min-height: 70px;
    }


    .qc-menu-toggle,
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .primary-navigation,
    .qc-nav {
        position: absolute;

        top: 70px;
        left: 0;
        right: 0;

        display: none;

        padding: 18px 24px 24px;

        background: #04101f;

        border-bottom: 1px solid var(--qc-border);
    }


    .primary-navigation.active,
    .qc-nav.active,
    .primary-navigation.is-open,
    .qc-nav.is-open {
        display: block;
    }


    .primary-navigation ul,
    .qc-nav ul,
    .qc-menu {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 2px;
    }


    .primary-navigation a,
    .qc-nav a,
    .qc-menu a {
        width: 100%;

        padding: 13px 6px;

        font-size: 15px;
    }


    .qc-header-cta,
    .header-cta {
        display: none;
    }


    .qc-contact-layout {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   32. MOBILE
========================================================= */

@media (max-width: 650px) {

    .qc-container {
        width: min(100% - 32px, var(--qc-container));
    }


    .qc-header-inner,
    .site-header-inner {
        width: calc(100% - 32px);
    }


    .qc-hero {
        padding: 70px 0;
    }


    .qc-hero-grid {
        gap: 35px;
    }


    .qc-hero-text {
        font-size: 17px;
    }


    .qc-hero-actions {
        flex-direction: column;
    }


    .qc-btn-primary,
    .qc-btn-secondary {
        width: 100%;
    }


    .qc-hero-trust {
        gap: 8px;
    }


    .qc-hero-visual {
        min-height: 260px;
    }


    .qc-floating-card {
        position: static;

        display: inline-flex;

        margin:
            10px 5px
            0 0;
    }


    .qc-section {
        padding: 65px 0;
    }


    .qc-cards,
    .qc-services-grid,
    .qc-mini-grid {
        grid-template-columns: 1fr;
    }


    .qc-card,
    .qc-service-card {
        padding: 23px;
    }


    .qc-contact-form-card,
    .qc-contact-info-card {
        padding: 23px;
    }


    .qc-contact-form-grid {
        grid-template-columns: 1fr;
    }


    .qc-field-full {
        grid-column: auto;
    }


    .rcm-process-section {
        padding:
            65px 18px;
    }


    .rcm-section-heading {
        margin-bottom: 38px;
    }


    .rcm-section-heading p {
        font-size: 16px;
    }


    .rcm-process-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .rcm-process-card {
        min-height: 0;

        padding: 24px;
    }


    .rcm-icon {
        width: 70px;
        height: 70px;

        flex-basis: 70px;
    }


    .rcm-icon svg {
        width: 36px;
        height: 36px;
    }


    .rcm-number {
        width: 40px;
        height: 40px;

        flex-basis: 40px;

        font-size: 13px;
    }


    .rcm-process-card h3 {
        font-size: 20px;
    }


    .qc-footer-grid,
    .footer-grid {
        width: calc(100% - 32px);

        grid-template-columns: 1fr;

        gap: 28px;
    }


    .qc-footer-bottom,
    .footer-bottom {
        width: calc(100% - 32px);
    }

}


/* =========================================================
   33. VERY SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    h1 {
        font-size: 37px;
    }


    h2 {
        font-size: 30px;
    }


    .qc-hero {
        padding: 58px 0;
    }


    .qc-section {
        padding: 55px 0;
    }


    .rcm-process-section {
        padding: 55px 15px;
    }

}


/* =========================================================
   CURRENT HEADER.PHP COMPATIBILITY
   Keeps the original QuickCore look without the later override.
========================================================= */

.site-header .qc-nav{
    position:relative;
    width:min(100% - 48px, var(--qc-container));
    min-height:78px;
    margin:0 auto;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

.qc-brand{
    flex:0 0 auto;
}

.qc-brand-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.qc-logo-image{
    display:block;
    width:auto;
    height:48px;
    max-width:70px;
    object-fit:contain;
}

.qc-brand-name{
    display:inline-flex;
    align-items:center;
    color:#ffffff;
    font-size:21px;
    font-weight:800;
    line-height:1;
    letter-spacing:.01em;
    white-space:nowrap;
}

.qc-brand-quick{
    color:#ffffff;
}

.qc-brand-core{
    color:var(--qc-blue-light);
}

.site-header .qc-menu{
    display:block;
    margin-left:auto;
}

.site-header .qc-menu > ul{
    display:flex;
    align-items:center;
    gap:5px;
    margin:0;
    padding:0;
    list-style:none;
}

.site-header .qc-menu li{
    position:relative;
    margin:0;
    padding:0;
    list-style:none;
}

.site-header .qc-menu a{
    display:block;
    padding:11px 13px;
    color:#cbd7e8;
    font-size:14px;
    font-weight:500;
    line-height:1.3;
    white-space:nowrap;
    text-decoration:none;
    transition:color .2s ease;
}

.site-header .qc-menu a:hover,
.site-header .qc-menu .current-menu-item > a,
.site-header .qc-menu .current_page_item > a{
    color:#ffffff;
}

.qc-header-btn{
    flex:0 0 auto;
    min-height:46px;
    padding:0 21px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:9px;
    background:linear-gradient(135deg,#1677ff,#075dc9);
    color:#ffffff !important;
    font-size:14px;
    font-weight:700;
    line-height:1;
    white-space:nowrap;
    text-decoration:none;
    transition:transform .2s ease,box-shadow .2s ease;
}

.qc-header-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 30px rgba(22,119,255,.25);
}

/* Desktop dropdowns */
.site-header .qc-menu .sub-menu{
    position:absolute;
    top:100%;
    left:0;
    z-index:10000;
    min-width:230px;
    display:none;
    margin:0;
    padding:10px;
    list-style:none;
    border:1px solid rgba(255,255,255,.10);
    border-radius:10px;
    background:#08182b;
    box-shadow:0 18px 40px rgba(0,0,0,.25);
}

.site-header .qc-menu li:hover > .sub-menu{
    display:block;
}

.site-header .qc-menu .sub-menu a{
    padding:10px 12px;
    white-space:normal;
}

/* Mobile button */
.qc-mobile-toggle{
    display:none;
    width:44px;
    height:44px;
    padding:9px;
    border:1px solid var(--qc-border);
    border-radius:9px;
    background:#0c1c30;
    cursor:pointer;
}

.qc-mobile-toggle span{
    display:block;
    width:100%;
    height:2px;
    margin:5px 0;
    border-radius:10px;
    background:#ffffff;
    transition:transform .2s ease,opacity .2s ease;
}

.qc-mobile-toggle.is-open span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.qc-mobile-toggle.is-open span:nth-child(2){
    opacity:0;
}

.qc-mobile-toggle.is-open span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

.qc-mobile-menu{
    display:none;
    background:#061424;
    border-top:1px solid rgba(255,255,255,.07);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.qc-mobile-menu.is-open{
    display:block;
}

.qc-mobile-menu ul{
    margin:0;
    padding:14px 0;
    list-style:none;
}

.qc-mobile-menu li{
    margin:0;
    list-style:none;
}

.qc-mobile-menu a{
    display:block;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
    color:#d1ddec;
    font-size:15px;
    text-decoration:none;
}

.qc-mobile-menu .sub-menu{
    margin-left:18px;
    padding:0;
}

.qc-mobile-menu .sub-menu a{
    color:#9fb4cc;
    font-size:14px;
}

.qc-mobile-cta{
    display:flex !important;
    align-items:center;
    justify-content:center;
    width:100%;
    margin:5px 0 20px;
    padding:13px 18px !important;
    border:0 !important;
    border-radius:9px;
    background:#1677ff;
    color:#ffffff !important;
    font-weight:700;
}

/* Important: current header.php uses .qc-nav as the whole header row.
   Do not hide or position that wrapper on mobile. */
@media (max-width:850px){
    .site-header .qc-nav{
        position:relative;
        top:auto;
        left:auto;
        right:auto;
        width:calc(100% - 32px);
        min-height:70px;
        padding:0;
        display:flex;
        flex-direction:row;
        align-items:center;
        justify-content:space-between;
        background:transparent;
        border:0;
    }

    .site-header .qc-menu{
        display:none;
    }

    .qc-header-btn{
        display:none;
    }

    .qc-mobile-toggle{
        display:block;
        margin-left:auto;
    }

    .qc-logo-image{
        height:44px;
        max-width:64px;
    }

    .qc-brand-name{
        font-size:20px;
    }
}

@media (max-width:480px){
    .qc-logo-image{
        height:40px;
        max-width:58px;
    }

    .qc-brand-name{
        font-size:18px;
    }
}

/* =========================================================
   QUICKCORE OLD INTERFACE RESTORE
   Matches the previous clean sans-serif header/text design.
========================================================= */

html,
body,
body * {
    font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif !important;
}

body {
    font-size: 16px;
    line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif !important;
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: #061426;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.site-header .qc-nav {
    width: min(100% - 48px, 1240px) !important;
    min-height: 88px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 28px !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    background: transparent !important;
    border: 0 !important;
}

.qc-brand {
    flex: 0 0 auto;
}

.qc-brand-link {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
}

.qc-logo-image {
    display: block !important;
    width: auto !important;
    height: 58px !important;
    max-width: 78px !important;
    object-fit: contain !important;
}

.qc-brand-name {
    display: inline-flex !important;
    align-items: center !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.qc-brand-quick { color: #ffffff !important; }
.qc-brand-core  { color: #43a0ff !important; }

.site-header .qc-menu {
    display: block !important;
    margin-left: auto !important;
}

.site-header .qc-menu > ul {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.site-header .qc-menu li {
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.site-header .qc-menu a {
    display: block !important;
    padding: 12px 13px !important;
    color: #d4dfed !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
}

.site-header .qc-menu a:hover,
.site-header .qc-menu .current-menu-item > a,
.site-header .qc-menu .current_page_item > a {
    color: #ffffff !important;
}

.qc-header-btn {
    min-height: 48px !important;
    padding: 0 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    border-radius: 9px !important;
    background: linear-gradient(135deg,#1677ff,#075dc9) !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
}

/* Desktop dropdown */
.site-header .qc-menu .sub-menu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    z-index: 99999 !important;
    min-width: 235px !important;
    display: none !important;
    margin: 0 !important;
    padding: 10px !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 10px !important;
    background: #08182b !important;
    box-shadow: 0 18px 40px rgba(0,0,0,.25) !important;
}

.site-header .qc-menu li:hover > .sub-menu {
    display: block !important;
}

.site-header .qc-menu .sub-menu a {
    padding: 10px 12px !important;
    white-space: normal !important;
}

/* Old hero proportions */
.qc-hero {
    padding: 105px 0 !important;
}

.qc-hero h1 {
    max-width: 780px !important;
    margin-bottom: 25px !important;
    font-size: clamp(44px, 5.2vw, 68px) !important;
    line-height: 1.08 !important;
    font-weight: 750 !important;
    letter-spacing: -0.04em !important;
}

.qc-hero-text {
    max-width: 690px !important;
    margin-bottom: 32px !important;
    color: #b9c8da !important;
    font-size: 19px !important;
    line-height: 1.75 !important;
}

.qc-eyebrow,
.qc-section-label {
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
}

.qc-section h2,
.qc-cta h2 {
    font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif !important;
    font-weight: 750 !important;
    letter-spacing: -0.03em !important;
}

/* Medical Billing RCM cards */
#medical-services .qc-cards {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0,1fr)) !important;
    gap: 20px !important;
    margin-top: 40px !important;
}

#medical-services .qc-rcm-card {
    min-height: 210px !important;
    padding: 26px !important;
    border-radius: 15px !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    background: #0d1c30 !important;
}

#medical-services .qc-rcm-card-header {
    display: grid !important;
    grid-template-columns: 42px minmax(0,1fr) !important;
    align-items: center !important;
    gap: 14px !important;
    margin-bottom: 16px !important;
}

#medical-services .qc-service-icon {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px !important;
    background: rgba(22,119,255,.10) !important;
    border: 1px solid rgba(67,160,255,.24) !important;
}

#medical-services .qc-service-icon svg {
    width: 22px !important;
    height: 22px !important;
    display: block !important;
    fill: none !important;
    stroke: #43a0ff !important;
    stroke-width: 1.8 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}


#medical-services .qc-rcm-card h3 {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
}

#medical-services .qc-rcm-card p {
    margin: 0 !important;
    color: #aebed1 !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

/* Specialties: stop giant SVGs */
#specialties .qc-specialty-grid {
    display: grid !important;
    grid-template-columns: repeat(3,minmax(0,1fr)) !important;
    gap: 18px !important;
    margin-top: 34px !important;
}

#specialties .qc-specialty-card {
    min-height: 108px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 20px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 14px !important;
    background: #0d1c30 !important;
    text-decoration: none !important;
}

#specialties .qc-specialty-icon {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    flex: 0 0 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    border-radius: 10px !important;
    background: rgba(22,119,255,.10) !important;
    border: 1px solid rgba(67,160,255,.22) !important;
}

#specialties .qc-specialty-icon svg {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    display: block !important;
    fill: none !important;
    stroke: #43a0ff !important;
    stroke-width: 1.7 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

#specialties .qc-specialty-content h3 {
    margin: 0 0 6px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
}

#specialties .qc-specialty-content span {
    color: #43a0ff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

/* Mobile */
@media (max-width: 900px) {
    .site-header .qc-menu,
    .qc-header-btn {
        display: none !important;
    }

    .qc-mobile-toggle {
        display: block !important;
        margin-left: auto !important;
    }

    .site-header .qc-nav {
        width: calc(100% - 32px) !important;
        min-height: 72px !important;
    }

    .qc-logo-image {
        height: 46px !important;
        max-width: 64px !important;
    }

    #medical-services .qc-cards,
    #specialties .qc-specialty-grid {
        grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    }
}

@media (max-width: 650px) {
    .qc-hero {
        padding: 70px 0 !important;
    }

    .qc-hero h1 {
        font-size: 40px !important;
    }

    .qc-hero-text {
        font-size: 17px !important;
    }

    #medical-services .qc-cards,
    #specialties .qc-specialty-grid {
        grid-template-columns: 1fr !important;
    }

    #medical-services .qc-rcm-card {
        min-height: 0 !important;
        padding: 22px !important;
    }

    #medical-services .qc-rcm-card-header {
        grid-template-columns: 40px minmax(0,1fr) !important;
        gap: 10px !important;
    }

    #medical-services .qc-service-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
    }

    #medical-services .qc-rcm-card h3 {
        font-size: 18px !important;
    }
}
