/********** Care Runners Redesign (Home + Business pages) **********/

:root {
    --cr-navy: #101A2C;
    --cr-navy-soft: #16233A;
    --cr-green: #0097B2;
    --cr-green-dark: #007A91;
    --cr-bg-soft: #F7FAF9;
    --cr-text-muted: #6B7280;
    --cr-border: #EEF1F0;
    --cr-radius: 16px;
    --cr-radius-lg: 24px;
    --cr-radius-pill: 50px;
    --cr-shadow: 0 10px 30px rgba(16, 26, 44, .08);
    --cr-shadow-lg: 0 20px 50px rgba(16, 26, 44, .14);
}

.cr-page {
    font-family: 'Heebo', sans-serif;
    color: var(--cr-navy);
    overflow-x: hidden;
}

.cr-page h1, .cr-page h2, .cr-page h3, .cr-page h4, .cr-page h5, .cr-page h6 {
    font-family: 'Jost', sans-serif;
}

/*** Layout ***/
.cr-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

@media (min-width: 992px) {
    .cr-container { padding: 0 40px; }
}

.cr-section { padding: 80px 0; }
.cr-section-sm { padding: 56px 0; }
.cr-bg-soft { background: var(--cr-bg-soft); }

.cr-eyebrow {
    display: inline-block;
    color: var(--cr-green);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/*** Buttons ***/
.cr-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--cr-radius-pill);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: .25s;
    cursor: pointer;
}

.cr-btn-primary { background: var(--cr-green); color: #fff; }
.cr-btn-primary:hover { background: var(--cr-green-dark); color: #fff; }

.cr-btn-outline-light { border-color: rgba(255, 255, 255, .55); color: #fff; background: transparent; }
.cr-btn-outline-light:hover { background: #fff; color: var(--cr-navy); }

.cr-btn-outline-dark { border-color: var(--cr-navy); color: var(--cr-navy); background: transparent; }
.cr-btn-outline-dark:hover { background: var(--cr-navy); color: #fff; }

.cr-btn-white { background: #fff; color: var(--cr-navy); }
.cr-btn-white:hover { background: var(--cr-bg-soft); color: var(--cr-navy); }

/*** Navbar ***/
.cr-navbar {
    background: #fff;
    box-shadow: 0 2px 14px rgba(16, 26, 44, .06);
    position: relative;
    z-index: 1000;
}

.cr-navbar .cr-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    flex-wrap: wrap;
    gap: 12px;
}

.cr-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--cr-navy);
    text-decoration: none;
    white-space: nowrap;
}

.cr-brand img { height: 46px; width: auto; }

.cr-nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.cr-nav-links .nav-link {
    color: var(--cr-navy);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    background: none;
    border: none;
}

.cr-nav-links .nav-link.active,
.cr-nav-links .nav-link:hover { color: var(--cr-green); }

.cr-nav-links .dropdown-menu {
    border: none;
    border-radius: 14px;
    box-shadow: var(--cr-shadow-lg);
    padding: 10px;
    margin-top: 14px;
}

.cr-nav-links .dropdown-item {
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--cr-navy);
}

.cr-nav-links .dropdown-item:hover { background: rgba(0, 151, 178, .08); color: var(--cr-green); }

.cr-login-btn {
    background: var(--cr-navy);
    color: #fff !important;
    border-radius: var(--cr-radius-pill);
    padding: 10px 22px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.cr-login-btn:hover { background: var(--cr-green); }

.cr-navbar .navbar-toggler {
    border: none;
    background: transparent;
    padding: 6px 4px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    line-height: 0;
    -webkit-appearance: none;
    appearance: none;
}
.cr-navbar .navbar-toggler:focus { box-shadow: none; outline: none; }
.cr-toggler-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--cr-navy);
    border-radius: 2px;
}
@media (min-width: 992px) {
    .cr-navbar .navbar-toggler { display: none; }
}

/*** Hero (dark overlay photo) ***/
.cr-hero {
    position: relative;
    color: #fff;
    padding: 90px 0 110px;
    background-size: cover;
    background-position: center;
}

.cr-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(16, 26, 44, .94) 10%, rgba(16, 26, 44, .8) 55%, rgba(16, 26, 44, .45) 100%);
}

.cr-hero .cr-container { position: relative; z-index: 1; }

.cr-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 151, 178, .18);
    border: 1px solid rgba(0, 151, 178, .45);
    color: #7CF0BE;
    padding: 6px 16px;
    border-radius: var(--cr-radius-pill);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
}

.cr-hero h1 { font-size: 48px; font-weight: 700; line-height: 1.15; max-width: 620px; color: #fff; }
.cr-hero h1 .accent { color: var(--cr-green); }
.cr-hero p.lead { font-size: 16px; color: rgba(255, 255, 255, .85); max-width: 480px; margin: 18px 0 30px; }

.cr-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/*** Cards / grids ***/
.cr-card {
    background: #fff;
    border: 1px solid var(--cr-border);
    border-radius: var(--cr-radius);
    padding: 28px;
    height: 100%;
    transition: .25s;
}

.cr-card:hover { box-shadow: var(--cr-shadow); transform: translateY(-4px); }

.cr-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 151, 178, .1);
    color: var(--cr-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.cr-card h5 { font-weight: 700; margin-bottom: 8px; }
.cr-card p { color: var(--cr-text-muted); font-size: 14px; margin-bottom: 14px; }
.cr-card h4 { color: var(--cr-navy); }
.cr-card ul { padding-left: 20px; margin-bottom: 14px; }
.cr-card ul li { color: var(--cr-text-muted); font-size: 14px; margin-bottom: 8px; }

.cr-learn-more { color: var(--cr-green); font-weight: 600; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.cr-learn-more i { transition: .2s; }
.cr-learn-more:hover i { transform: translateX(3px); }
.cr-learn-more:hover { color: var(--cr-green-dark); }

/*** App promo banner ***/
.cr-app-banner {
    background: linear-gradient(120deg, #EAF8F1, #F4FBF8);
    border-radius: var(--cr-radius-lg);
    padding: 48px;
    overflow: hidden;
}

.cr-app-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(0, 151, 178, .12);
    color: var(--cr-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.cr-store-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

.cr-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cr-navy);
    color: #fff;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 13px;
    text-decoration: none;
}

.cr-store-badge i { font-size: 22px; }
.cr-store-badge small { display: block; font-size: 10px; opacity: .7; line-height: 1.2; }
.cr-store-badge strong { display: block; font-size: 14px; font-weight: 600; line-height: 1.2; }
.cr-store-badge:hover { background: var(--cr-green); color: #fff; }

/*** Footer ***/
.cr-footer { background: var(--cr-navy); color: rgba(255, 255, 255, .72); padding-top: 64px; }
.cr-footer h6 { color: #fff; font-weight: 700; margin-bottom: 18px; font-size: 15px; }
.cr-footer a { color: rgba(255, 255, 255, .65); text-decoration: none; display: block; margin-bottom: 10px; font-size: 14px; }
.cr-footer a:hover { color: var(--cr-green); }

.cr-footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-family: 'Jost', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 14px; }
.cr-footer-brand img { height: 40px; }
.cr-footer-tagline { font-size: 14px; margin-bottom: 20px; max-width: 240px; }

.cr-social { display: flex; gap: 10px; }
.cr-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    color: #fff;
}
.cr-social a:hover { background: var(--cr-green); }

.cr-newsletter input {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .05);
    color: #fff;
    padding: 10px 14px;
    width: 100%;
    margin-bottom: 12px;
    font-size: 14px;
}
.cr-newsletter input::placeholder { color: rgba(255, 255, 255, .4); }
.cr-newsletter-msg { font-size: 13px; color: var(--cr-green); display: none; margin-top: -4px; margin-bottom: 10px; }
.cr-newsletter-msg.show { display: block; }

.cr-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 48px;
    padding: 20px 0;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cr-payment-icons { display: flex; gap: 14px; font-size: 22px; color: rgba(255, 255, 255, .6); }

/*** Supported-by strip ***/
.cr-supported-by { text-align: center; }
.cr-supported-by h6 { color: var(--cr-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: 13px; margin-bottom: 26px; }

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}
.logo-container img { max-width: 160px; height: auto; }

.mobile-slider { display: none; margin-top: 20px; }
.mobile-slider .owl-carousel .owl-item { display: flex; justify-content: center; align-items: center; padding: 10px; }
.mobile-slider img { width: 90%; max-width: 220px; height: auto; border-radius: 8px; }

.owl-nav { margin-top: 20px; }
.owl-nav button {
    background: #333 !important; color: white !important; border: none !important;
    border-radius: 50% !important; width: 40px !important; height: 40px !important;
    font-size: 18px !important; margin: 0 10px !important; transition: all .3s ease !important;
}
.owl-nav button:hover { background: #555 !important; }
.owl-dots { margin-top: 15px; }
.owl-dot { display: inline-block; margin: 0 5px; }
.owl-dot span { width: 12px; height: 12px; background: #ccc; border-radius: 50%; display: block; transition: all .3s ease; }
.owl-dot.active span { background: #333; }

@media (max-width: 767px) {
    .logo-container { display: none; }
    .mobile-slider { display: block; }
}

/*** Business hero (light) ***/
.cr-hero-light { background: var(--cr-bg-soft); padding: 70px 0; }
.cr-hero-light h1 { font-size: 40px; font-weight: 700; line-height: 1.2; }
.cr-hero-light h1 .accent { color: var(--cr-green); }
.cr-hero-light p.lead { color: var(--cr-text-muted); font-size: 16px; max-width: 460px; margin: 16px 0 24px; }

.cr-badge-soft {
    display: inline-block;
    background: rgba(0, 151, 178, .12);
    color: var(--cr-green-dark);
    padding: 6px 16px;
    border-radius: var(--cr-radius-pill);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.cr-checklist { list-style: none; padding: 0; margin: 0 0 26px; }
.cr-checklist li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: var(--cr-navy); font-size: 15px; }
.cr-checklist i { color: var(--cr-green); background: rgba(0, 151, 178, .1); width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }

.cr-hero-light-img { position: relative; }
.cr-hero-light-img img { border-radius: var(--cr-radius-lg); width: 100%; height: auto; box-shadow: var(--cr-shadow-lg); }

/*** CTA banner ***/
.cr-cta-banner {
    background: linear-gradient(120deg, var(--cr-green), var(--cr-green-dark));
    border-radius: var(--cr-radius-lg);
    padding: 34px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    color: #fff;
}
.cr-cta-banner h3 { font-weight: 700; margin-bottom: 6px; color: #fff; }
.cr-cta-banner p { margin: 0; opacity: .9; font-size: 14px; }

/*** Dark contact block (business page) ***/
.cr-contact-dark { background: var(--cr-navy); border-radius: var(--cr-radius-lg); overflow: hidden; color: #fff; }
.cr-contact-dark .cr-contact-form { padding: 44px; }
.cr-contact-dark .cr-eyebrow { color: #7CF0BE; }
.cr-contact-dark h3 { font-weight: 700; margin-bottom: 10px; color: #fff; }
.cr-contact-dark p.lead { color: rgba(255, 255, 255, .75); font-size: 14px; margin-bottom: 26px; }

.cr-contact-info { list-style: none; padding: 0; margin: 0 0 26px; }
.cr-contact-info li { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 14px; color: rgba(255, 255, 255, .85); }
.cr-contact-info i { color: var(--cr-green); width: 18px; }

.cr-contact-dark input, .cr-contact-dark textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .05);
    color: #fff;
    padding: 12px 14px;
    margin-bottom: 14px;
    font-size: 14px;
}
.cr-contact-dark input::placeholder, .cr-contact-dark textarea::placeholder { color: rgba(255, 255, 255, .4); }
.cr-contact-dark input:focus, .cr-contact-dark textarea:focus { outline: none; border-color: var(--cr-green); }

.cr-contact-map { min-height: 340px; height: 100%; }
.cr-contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

.cr-form-msg { font-size: 13px; color: #7CF0BE; display: none; margin-top: -4px; margin-bottom: 10px; }
.cr-form-msg.show { display: block; }

/*** Pricing tabs (cloud storage) ***/
.cr-pricing-tab {
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 14px;
    color: var(--cr-text-muted);
    background: transparent;
}
.cr-pricing-tab.active {
    background: var(--cr-green) !important;
    color: #fff !important;
}

/*** Responsive ***/
@media (max-width: 991.98px) {
    .cr-nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 6px;
        padding: 10px 0;
    }
    .cr-hero h1, .cr-hero-light h1 { font-size: 32px; }
    .cr-cta-banner { text-align: center; justify-content: center; }
}
