﻿/*
    Destination Sitters Site CSS
    =========================================================================
    Cleaned source of truth for the newer ds-* public website styling.

    Load order:
    1. bootstrap.min.css
    2. site.min.css / site.css legacy compatibility file
    3. ds-site.css / ds-site.min.css

    Editing rules:
    - Configure colors, spacing, borders, radii, and shadows in :root.
    - Keep generic reusable patterns in the shared sections below.
    - Keep page-specific rules in the module sections below.
    - Do not add inline style="" attributes to Razor views.
    - Do not duplicate shared button/card/section/form rules in page modules.
*/

/* ========================================================================== 
   01. Design tokens
   ========================================================================== */

:root {
    /* Brand colors */
    --ds-navy: #00388D;
    --ds-navy-dark: #002D72;
    --ds-navy-ink: #223769;
    --ds-orange: #FF8500;
    --ds-orange-hover: #E87500;
    --ds-gold: #FCC003;
    /* Text colors */
    --ds-ink: #262032;
    --ds-text: #444444;
    --ds-muted: #6C757D;
    --ds-white: #FFFFFF;
    /* Background colors */
    --ds-bg-white: #FFFFFF;
    --ds-blue-soft: #F7FBFF;
    --ds-blue-soft-2: #EEF7FF;
    --ds-green-soft: #E5F3E7;
    --ds-green-soft-2: #F7FBF8;
    --ds-peach: #FBEFED;
    --ds-gray-soft: #F7F7F8;
    --ds-gray-light: #F5F7FA;
    --ds-footer-dark: #111827;
    --ds-footer-darker: #0B1220;
    /* Borders and focus */
    --ds-border: #E1E5EA;
    --ds-border-field: #D7DEE8;
    --ds-focus-ring: 0 0 0 .18rem rgba(0, 56, 141, .12);
    /* Shadows */
    --ds-shadow-soft: 0 8px 22px rgba(17, 31, 52, .08);
    --ds-shadow: 0 12px 32px rgba(17, 31, 52, .10);
    --ds-shadow-medium: 0 16px 40px rgba(17, 31, 52, .16);
    --ds-shadow-strong: 0 18px 48px rgba(17, 31, 52, .22);
    /* Radii */
    --ds-radius-sm: 10px;
    --ds-radius-md: 14px;
    --ds-radius-lg: 18px;
    --ds-radius-xl: 22px;
    --ds-radius-2xl: 24px;
    --ds-radius-pill: 999px;
    /* Spacing */
    --ds-section-y: 3.75rem;
    --ds-section-y-tight: 3rem;
    --ds-section-y-mobile: 3rem;
    --ds-section-y-tight-mobile: 2.5rem;
    /* Typography */
    --ds-font-body: "Roboto", sans-serif;
    --ds-font-heading: "Open Sans", sans-serif;
    /*
        Fixed header reservation
        ---------------------------------------------------------------------
        The public layout uses a fixed header. These values reserve header space
        before JavaScript runs so the hero/content does not jump downward after
        DOMContentLoaded. JavaScript may fine-tune --ds-header-spacer-height after
        measuring the rendered header, but this first-paint value must be close
        to the normal full header height.
    */
    --ds-header-spacer-height: 108px;
}

@media (max-width: 991.98px) {
    :root {
        --ds-header-spacer-height: 96px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --ds-header-spacer-height: 84px;
    }
}

/* ========================================================================== 
   02. Shared sections and backgrounds
   ========================================================================== */

.ds-section,
.ds-home-section {
    padding: var(--ds-section-y) 0;
}

.ds-section-tight,
.ds-home-section-tight {
    padding: var(--ds-section-y-tight) 0;
}

.ds-home-section-flush-top {
    padding-top: 2.75rem;
    padding-bottom: var(--ds-section-y-tight);
}

.ds-bg-white,
.ds-home-white {
    background: var(--ds-bg-white);
}

.ds-bg-soft-blue,
.ds-home-soft-blue {
    background: linear-gradient(180deg, var(--ds-blue-soft) 0%, var(--ds-blue-soft-2) 100%);
}

.ds-bg-soft-green,
.ds-home-soft-green {
    background: linear-gradient(180deg, #EAF7ED 0%, var(--ds-green-soft-2) 100%);
}

.ds-bg-gray,
.ds-home-gray {
    background: var(--ds-gray-soft);
}

.ds-bg-soft-peach,
.ds-home-soft-peach {
    background: var(--ds-peach);
}

.ds-bg-navy,
.ds-home-navy {
    background: linear-gradient(135deg, var(--ds-navy-dark) 0%, var(--ds-navy) 100%);
    color: var(--ds-white);
}

    .ds-bg-navy .ds-section-title,
    .ds-bg-navy .ds-section-lead,
    .ds-bg-navy p,
    .ds-bg-navy li,
    .ds-home-navy .ds-section-title,
    .ds-home-navy .ds-section-lead,
    .ds-home-navy p,
    .ds-home-navy li {
        color: var(--ds-white);
    }

/* ========================================================================== 
   03. Shared typography
   ========================================================================== */

.ds-eyebrow {
    color: var(--ds-orange);
    display: inline-block;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: .65rem;
    text-transform: uppercase;
}

.ds-eyebrow-on-dark {
    color: var(--ds-gold);
}

.ds-section-title {
    color: var(--ds-ink);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 1rem;
}

.ds-section-lead {
    color: var(--ds-text);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
    max-width: 920px;
}

.ds-card-title {
    color: var(--ds-ink);
    font-size: 1.14rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: .65rem;
}

.ds-card-text {
    color: var(--ds-text);
    line-height: 1.62;
    margin-bottom: 1rem;
}

.ds-mini-note {
    color: var(--ds-muted);
    font-size: .95rem;
    line-height: 1.6;
}

.ds-reg-mark {
    font-size: 65%;
}

/* ========================================================================== 
   04. Shared cards, panels, icons, and lists
   ========================================================================== */

.ds-card {
    background: var(--ds-bg-white);
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius-lg);
    box-shadow: var(--ds-shadow-soft);
    height: 100%;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}

    .ds-card:hover {
        box-shadow: var(--ds-shadow);
        transform: translateY(-3px);
    }

.ds-card-body {
    padding: 1.45rem;
}

.ds-content-card {
    background: var(--ds-bg-white);
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius-2xl);
    box-shadow: var(--ds-shadow);
    height: 100%;
    padding: 1.65rem;
}

    .ds-content-card p {
        color: var(--ds-text);
        line-height: 1.72;
        margin-bottom: 1rem;
    }

        .ds-content-card p:last-child {
            margin-bottom: 0;
        }

.ds-feature-card {
    background: var(--ds-bg-white);
    border: 1px solid var(--ds-border);
    border-radius: 20px;
    box-shadow: var(--ds-shadow-soft);
    height: 100%;
    padding: 1.35rem;
    transition: transform .18s ease, box-shadow .18s ease;
}

    .ds-feature-card:hover {
        box-shadow: var(--ds-shadow);
        transform: translateY(-3px);
    }

    .ds-feature-card h3 {
        color: var(--ds-ink);
        font-size: 1.14rem;
        font-weight: 800;
        line-height: 1.25;
        margin-bottom: .6rem;
    }

    .ds-feature-card p {
        color: var(--ds-text);
        line-height: 1.62;
        margin-bottom: 0;
    }

.ds-icon-circle {
    align-items: center;
    background: rgba(0, 56, 141, .10);
    border-radius: 50%;
    color: var(--ds-navy);
    display: inline-flex;
    font-size: 1.25rem;
    height: 48px;
    justify-content: center;
    margin-bottom: .85rem;
    width: 48px;
}

.ds-check-list {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

    .ds-check-list li {
        color: var(--ds-text);
        line-height: 1.55;
        margin-bottom: .65rem;
        padding-left: 1.75rem;
        position: relative;
    }

        .ds-check-list li:before {
            color: var(--ds-orange);
            content: "\f00c";
            font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
            font-weight: 900;
            left: 0;
            position: absolute;
            top: .05rem;
        }

.ds-cta-panel {
    background: linear-gradient(135deg, var(--ds-navy-dark) 0%, var(--ds-navy) 100%);
    border-radius: var(--ds-radius-2xl);
    box-shadow: var(--ds-shadow-medium);
    color: var(--ds-white);
    padding: 2rem;
}

    .ds-cta-panel h2,
    .ds-cta-panel p {
        color: var(--ds-white);
    }

    .ds-cta-panel h2 {
        font-size: 1.55rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: .6rem;
    }

    .ds-cta-panel p {
        line-height: 1.65;
        margin-bottom: 0;
    }

/* ========================================================================== 
   05. Shared buttons and action groups
   ========================================================================== */

.btn-ds-primary,
.btn-ds-secondary,
.btn-ds-outline,
.btn-ds-light {
    align-items: center;
    border-radius: var(--ds-radius-pill);
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    line-height: 1.2;
    min-height: 40px;
    padding: .68rem 1.18rem;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

    .btn-ds-primary.btn-sm,
    .btn-ds-secondary.btn-sm,
    .btn-ds-outline.btn-sm,
    .btn-ds-light.btn-sm,
    .btn-sm.btn-ds-primary,
    .btn-sm.btn-ds-secondary,
    .btn-sm.btn-ds-outline,
    .btn-sm.btn-ds-light {
        min-height: 34px;
        padding: .45rem .82rem;
    }

.btn-ds-primary {
    background: var(--ds-orange);
    border-color: var(--ds-orange);
    color: var(--ds-white);
}

    .btn-ds-primary:hover,
    .btn-ds-primary:focus {
        background: var(--ds-orange-hover);
        border-color: var(--ds-orange-hover);
        color: var(--ds-white);
        text-decoration: none;
    }

.btn-ds-secondary {
    background: var(--ds-navy);
    border-color: var(--ds-navy);
    color: var(--ds-white);
}

    .btn-ds-secondary:hover,
    .btn-ds-secondary:focus {
        background: var(--ds-navy-dark);
        border-color: var(--ds-navy-dark);
        color: var(--ds-white);
        text-decoration: none;
    }

.btn-ds-outline {
    background: var(--ds-white);
    border: 2px solid var(--ds-navy);
    color: var(--ds-navy);
}

    .btn-ds-outline:hover,
    .btn-ds-outline:focus {
        background: var(--ds-navy);
        border-color: var(--ds-navy);
        color: var(--ds-white);
        text-decoration: none;
    }

.btn-ds-light {
    background: var(--ds-white);
    border: 2px solid var(--ds-white);
    color: var(--ds-navy);
}

    .btn-ds-light:hover,
    .btn-ds-light:focus {
        background: var(--ds-gray-light);
        border-color: var(--ds-gray-light);
        color: var(--ds-navy-dark);
        text-decoration: none;
    }

.ds-button-row,
.ds-gateway-actions,
.ds-service-actions,
.ds-national-market-actions,
.ds-press-release-actions,
.ds-status-actions,
.ds-access-form-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.ds-gateway-actions {
    justify-content: flex-end;
}

.ds-service-actions,
.ds-national-market-actions,
.ds-press-release-actions {
    justify-content: flex-start;
}

    .ds-service-actions .btn,
    .ds-national-market-actions .btn,
    .ds-press-release-actions .btn,
    .ds-status-actions .btn,
    .ds-access-form-actions .btn {
        flex: 0 0 auto;
    }

.ds-actions-equal .btn {
    flex: 1 1 0;
}

.ds-actions-stack .btn {
    display: flex;
    width: 100%;
}

/* ========================================================================== 
   06. Shared forms
   ========================================================================== */

.ds-form {
    margin: 0;
}

.ds-form-row {
    margin-left: -6px;
    margin-right: -6px;
}

    .ds-form-row > [class*="col-"],
    .ds-form-row > .col {
        padding-left: 6px;
        padding-right: 6px;
    }

.ds-form-label,
.ds-form label {
    color: var(--ds-ink);
    font-size: .86rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: .25rem;
    margin-top: .55rem;
}

.ds-required {
    color: #dc3545;
    font-weight: 800;
}

.ds-required-note {
    color: var(--ds-text);
    font-size: .95rem;
    line-height: 1.55;
}

.ds-form .form-control,
.ds-form-control {
    border: 1px solid var(--ds-border-field);
    border-radius: var(--ds-radius-sm);
    color: var(--ds-ink);
}

.ds-form .form-control-sm,
.ds-form-control-sm {
    font-size: .9rem;
    min-height: 34px;
}

.ds-form textarea.form-control-sm,
textarea.ds-form-control-sm {
    min-height: 86px;
}

.ds-form .form-control:focus,
.ds-form-control:focus {
    border-color: var(--ds-navy);
    box-shadow: var(--ds-focus-ring);
}

.ds-form-section-title {
    align-items: center;
    border-bottom: 1px solid var(--ds-border);
    color: var(--ds-ink);
    display: flex;
    font-size: 1.16rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 1rem 0 .65rem;
    padding-bottom: .45rem;
}

    .ds-form-section-title:before {
        background: var(--ds-orange);
        border-radius: var(--ds-radius-pill);
        content: "";
        display: inline-block;
        height: 4px;
        margin-right: .55rem;
        width: 28px;
    }

.ds-form-alert {
    border-radius: var(--ds-radius-md) !important;
    font-size: .9rem;
    line-height: 1.5;
    margin-bottom: .75rem;
    padding: .75rem .9rem;
}

.ds-checkbox-panel {
    background: var(--ds-white);
    border: 1px solid var(--ds-border-field);
    border-radius: 12px;
    height: auto;
    min-height: 34px;
    padding: .55rem .75rem;
}

    .ds-checkbox-panel .form-check {
        margin-bottom: .25rem;
    }

        .ds-checkbox-panel .form-check:last-child {
            margin-bottom: 0;
        }

.ds-form-card {
    background: var(--ds-white);
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius-xl);
    box-shadow: var(--ds-shadow);
    overflow: hidden;
}

.ds-form-card-header {
    background: linear-gradient(135deg, var(--ds-navy-dark) 0%, var(--ds-navy) 100%);
    color: var(--ds-white);
    padding: 1rem 1.25rem;
}

    .ds-form-card-header h1,
    .ds-form-card-header h2,
    .ds-form-card-header h3,
    .ds-form-card-header p {
        color: var(--ds-white);
    }

.ds-form-card-body {
    background: linear-gradient(180deg, var(--ds-blue-soft) 0%, var(--ds-white) 100%);
    padding: 1.25rem;
}

.ds-form-card-footer {
    background: var(--ds-white);
    border-top: 1px solid var(--ds-border);
    padding: .85rem 1.25rem;
}

/* ========================================================================== 
   07. Responsive shared rules
   ========================================================================== */

@media (max-width: 991.98px) {
    .ds-gateway-actions {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .ds-section,
    .ds-home-section {
        padding: var(--ds-section-y-mobile) 0;
    }

    .ds-section-tight,
    .ds-home-section-tight {
        padding: var(--ds-section-y-tight-mobile) 0;
    }

    .ds-section-title {
        font-size: 1.65rem;
    }

    .ds-content-card,
    .ds-cta-panel {
        border-radius: var(--ds-radius-lg);
    }
}

@media (max-width: 575.98px) {
    .ds-service-actions,
    .ds-national-market-actions,
    .ds-press-release-actions,
    .ds-status-actions,
    .ds-access-form-actions {
        display: block;
    }

        .ds-service-actions .btn,
        .ds-national-market-actions .btn,
        .ds-press-release-actions .btn,
        .ds-status-actions .btn,
        .ds-access-form-actions .btn {
            display: flex;
            margin-bottom: .55rem;
            width: 100%;
        }

            .ds-service-actions .btn:last-child,
            .ds-national-market-actions .btn:last-child,
            .ds-press-release-actions .btn:last-child,
            .ds-status-actions .btn:last-child,
            .ds-access-form-actions .btn:last-child {
                margin-bottom: 0;
            }
}

/* ========================================================================== 
   08. Page/module rules
   ========================================================================== */
.ds-gateway-panel {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(17, 31, 52, .16);
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.ds-gateway-panel-inner {
    padding: 1.6rem;
}

.ds-gateway-title {
    color: var(--ds-ink);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: .4rem;
}

.ds-service-tile {
    border-top: 5px solid var(--ds-orange);
}

.ds-service-card-img {
    height: 165px;
    object-fit: cover;
    width: 100%;
}

.ds-path-card {
    border-left: 5px solid var(--ds-orange);
}

.ds-stat-note {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    padding: 1.2rem;
}

.ds-market-group {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    padding: 1.2rem;
}

.ds-market-group-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: .75rem;
}

.ds-market-pill {
    display: inline-block;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
    color: var(--ds-navy);
    border-radius: 999px;
    padding: .42rem .78rem;
    margin: .2rem;
    font-weight: 700;
    font-size: .9rem;
}

    .ds-market-pill:hover,
    .ds-market-pill:focus {
        background: var(--ds-orange);
        border-color: var(--ds-orange);
        color: #fff;
        text-decoration: none;
    }

.ds-step-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: var(--ds-orange);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-right: 1rem;
}

.ds-final-cta {
    background: linear-gradient(135deg, var(--ds-navy-dark), var(--ds-navy));
    color: #fff;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(17, 31, 52, .18);
    padding: 2.1rem;
}

    .ds-final-cta h2,
    .ds-final-cta p {
        color: #fff;
    }

.ds-resource-card {
    border-top: 5px solid var(--ds-orange);
}

.ds-resource-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .ds-resource-list li {
        border-top: 1px solid var(--ds-border);
        margin: 0;
    }

        .ds-resource-list li:first-child {
            border-top: 0;
        }

.ds-resource-link {
    color: var(--ds-navy);
    display: block;
    font-weight: 800;
    padding: .55rem 0;
    text-decoration: none;
}

    .ds-resource-link:hover,
    .ds-resource-link:focus {
        color: var(--ds-orange);
        text-decoration: none;
    }

.ds-legacy-home-partials {
    background: #fff;
}

@media (max-width: 767.98px) {
    .ds-gateway-panel {
        margin-top: 0;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .ds-gateway-panel-inner {
        padding: 1.25rem;
    }

    .ds-service-card-img {
        height: 180px;
    }

    .ds-final-cta {
        border-radius: 18px;
        padding: 1.5rem;
    }
}

/* ========================================================================== 
   09. Header, Navigation, Dropdowns, and Fixed Header Spacer
   ========================================================================== */

:root {
    --ds-header-spacer-height: 108px;
}

@media (max-width: 991.98px) {
    :root {
        --ds-header-spacer-height: 96px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --ds-header-spacer-height: 84px;
    }
}

.ds-site-header {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1050;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(225, 229, 234, .95);
    box-shadow: 0 6px 20px rgba(17, 31, 52, .08);
    transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

    .ds-site-header .container {
        padding-top: 0;
        padding-bottom: 0;
    }

.ds-header-spacer {
    height: var(--ds-header-spacer-height);
    min-height: var(--ds-header-spacer-height);
    flex: 0 0 auto;
    transition: none !important;
}

.ds-site-header .header-contact {
    display: flex;
    align-items: center;
    min-height: 30px;
    max-height: 30px;
    margin-bottom: 0;
    padding-top: 3px;
    overflow: hidden;
    opacity: 1;
    line-height: 1.25;
    transition: opacity .22s ease;
}

.ds-site-header .phone-number {
    margin-right: 30px;
    color: var(--ds-navy-ink);
    line-height: 1.25;
    text-decoration: none;
    background-color: transparent;
}

    .ds-site-header .phone-number:hover,
    .ds-site-header .phone-number:focus {
        color: var(--ds-navy);
        text-decoration: none;
    }

.ds-site-header .navbar {
    min-height: 78px;
    padding: .55rem 1rem .8rem;
}

.ds-site-header .navbar-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 58px;
    padding-left: 4.4em;
    background: url('images/logo.webp') no-repeat left center;
    background-size: contain;
}

.ds-site-header .brand-name {
    display: block;
    color: var(--ds-navy-ink) !important;
    font-family: var(--ds-font-body);
    font-size: 1.42rem;
    font-weight: 700;
    line-height: 1.05;
}

.ds-site-header .brand-slogan {
    display: block;
    color: var(--ds-navy-ink) !important;
    font-family: var(--ds-font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.15;
}

.ds-site-header .nav-item {
    padding-right: .5rem;
    padding-left: .5rem;
    white-space: nowrap;
}

.ds-site-header .navbar-light .navbar-nav .nav-link {
    color: #1f2b3d;
    font-weight: 700;
    line-height: 1.25;
    padding-top: .45rem;
    padding-bottom: .45rem;
    text-decoration: none;
    transition: color .18s ease, background-color .18s ease;
}

    .ds-site-header .navbar-light .navbar-nav .nav-link:hover,
    .ds-site-header .navbar-light .navbar-nav .nav-link:focus {
        color: var(--ds-navy);
        text-decoration: none;
    }

.ds-nav-home-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
}

    .ds-nav-home-link i {
        font-size: 1rem;
        line-height: 1;
    }

.ds-site-header .nav-item-highlighted {
    color: var(--ds-white) !important;
    background: var(--ds-orange);
    border-radius: var(--ds-radius-pill);
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

    .ds-site-header .nav-item-highlighted:hover,
    .ds-site-header .nav-item-highlighted:focus {
        color: var(--ds-white) !important;
        background: var(--ds-orange-hover);
    }

.ds-site-header .nav-item-secondary-cta {
    color: var(--ds-navy-dark);
}

    .ds-site-header .nav-item-secondary-cta:hover,
    .ds-site-header .nav-item-secondary-cta:focus {
        color: var(--ds-orange);
    }

body.ds-header-is-scrolled .ds-site-header {
    background: rgba(255, 255, 255, .92);
    border-bottom-color: rgba(225, 229, 234, .74);
    box-shadow: 0 10px 28px rgba(17, 31, 52, .14);
}

    body.ds-header-is-scrolled .ds-site-header .header-contact {
        opacity: .72;
    }

    body.ds-header-is-scrolled .ds-site-header .brand-slogan {
        opacity: .86;
    }

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
    body.ds-header-is-scrolled .ds-site-header {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}

.ds-site-header .dropdown-menu {
    margin-top: 1.75rem;
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius-md);
    background: var(--ds-white);
    box-shadow: var(--ds-shadow-strong);
}

.ds-site-header .dropdown-item {
    color: var(--ds-ink);
    font-weight: 700;
    padding: .55rem 1.15rem;
    text-decoration: none;
}

    .ds-site-header .dropdown-item:hover,
    .ds-site-header .dropdown-item:focus {
        color: var(--ds-navy);
        background: var(--ds-blue-soft);
        text-decoration: none;
    }

.ds-services-nav {
    position: relative;
}

.ds-services-menu {
    right: 0;
    left: auto;
    width: 920px;
    max-width: calc(100vw - 2rem);
    margin-top: 1.65rem;
    padding: 0;
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius-md);
    background: var(--ds-white);
    box-shadow: var(--ds-shadow-strong);
    overflow: hidden;
    transform: none;
}

.ds-services-menu-intro {
    padding: .8rem 1rem;
    background: var(--ds-white);
    border-bottom: 1px solid var(--ds-border);
}

.ds-services-menu-intro-kicker {
    margin-bottom: .15rem;
    color: var(--ds-orange);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.ds-services-menu-intro-text {
    color: var(--ds-navy-dark);
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}

.ds-services-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 0;
    padding: .45rem;
    background: var(--ds-white);
}

.ds-services-menu-column {
    display: grid;
    grid-template-rows: 1.35rem 7.15rem 2.35rem 1fr;
    min-width: 0;
    padding: .7rem;
    border-right: 1px solid var(--ds-border);
    overflow-wrap: break-word;
    word-break: normal;
}

    .ds-services-menu-column:last-child {
        border-right: 0;
    }

.ds-services-menu-group-label {
    margin: 0 0 .55rem;
    color: var(--ds-muted);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .07em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}

.ds-services-menu-service-block {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: .68rem;
    align-items: start;
    align-self: start;
    min-width: 0;
    margin: 0 0 .65rem;
    padding: .7rem;
    color: var(--ds-text);
    border-radius: var(--ds-radius-sm);
    text-decoration: none;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}

    .ds-services-menu-service-block:hover,
    .ds-services-menu-service-block:focus {
        color: var(--ds-text);
        background: var(--ds-blue-soft);
        text-decoration: none;
    }

.ds-services-menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--ds-navy-dark);
    background: var(--ds-bg-white);
    border-radius: var(--ds-radius-pill);
    font-size: 1rem;
    line-height: 1;
}

.ds-services-menu-service-block:hover .ds-services-menu-icon,
.ds-services-menu-service-block:focus .ds-services-menu-icon {
    color: var(--ds-white);
    background: var(--ds-orange);
}

.ds-services-menu-main-link {
    display: block;
    margin-bottom: .14rem;
    color: var(--ds-navy-dark);
    font-size: .9rem;
    font-weight: 900;
    line-height: 1.22;
    text-decoration: none;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}

.ds-services-menu-main-text {
    display: block;
    max-width: 100%;
    margin-bottom: 0;
    color: var(--ds-muted);
    font-size: .77rem;
    font-weight: 600;
    line-height: 1.38;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}

.ds-services-menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: start;
    width: 100%;
    min-height: 32px;
    margin: 0 0 .65rem;
    padding: .35rem .65rem;
    color: var(--ds-white);
    background: var(--ds-orange);
    border-radius: var(--ds-radius-pill);
    font-size: .78rem;
    font-weight: 850;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}

    .ds-services-menu-cta:hover,
    .ds-services-menu-cta:focus {
        color: var(--ds-white);
        background: var(--ds-orange-hover);
        text-decoration: none;
    }

.ds-services-menu-support-links {
    display: grid;
    align-self: start;
    gap: .32rem;
    padding-top: .6rem;
    border-top: 1px solid var(--ds-border);
}

    .ds-services-menu-support-links a {
        display: block;
        color: var(--ds-text);
        font-size: .78rem;
        font-weight: 700;
        line-height: 1.35;
        text-decoration: none;
        white-space: normal;
        overflow-wrap: break-word;
        word-break: normal;
    }

        .ds-services-menu-support-links a:hover,
        .ds-services-menu-support-links a:focus {
            color: var(--ds-orange);
            text-decoration: underline;
        }

.ds-company-nav {
    position: relative;
}

.ds-company-menu {
    right: 0;
    left: auto;
    width: 360px;
    max-width: calc(100vw - 2rem);
    margin-top: 1.65rem;
    padding: 0;
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius-md);
    background: var(--ds-white);
    box-shadow: var(--ds-shadow-strong);
    overflow: hidden;
    transform: none;
}

.ds-company-menu-intro {
    padding: .8rem 1rem;
    background: var(--ds-white);
    border-bottom: 1px solid var(--ds-border);
}

.ds-company-menu-intro-kicker {
    margin-bottom: .15rem;
    color: var(--ds-orange);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.ds-company-menu-intro-text {
    color: var(--ds-navy-dark);
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}

.ds-company-menu-body {
    display: grid;
    gap: 0;
    padding: .45rem;
    background: var(--ds-white);
}

.ds-company-menu-link {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: .68rem;
    align-items: start;
    min-width: 0;
    padding: .7rem;
    color: var(--ds-text);
    border-radius: var(--ds-radius-sm);
    text-decoration: none;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}

    .ds-company-menu-link:hover,
    .ds-company-menu-link:focus {
        color: var(--ds-text);
        background: var(--ds-blue-soft);
        text-decoration: none;
    }

.ds-company-menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--ds-navy-dark);
    background: var(--ds-bg-white);
    border-radius: var(--ds-radius-pill);
    font-size: 1rem;
    line-height: 1;
}

.ds-company-menu-link:hover .ds-company-menu-icon,
.ds-company-menu-link:focus .ds-company-menu-icon {
    color: var(--ds-white);
    background: var(--ds-orange);
}

.ds-company-menu-link-title {
    display: block;
    margin-bottom: .14rem;
    color: var(--ds-navy-dark);
    font-size: .9rem;
    font-weight: 900;
    line-height: 1.22;
}

.ds-company-menu-link-text {
    display: block;
    color: var(--ds-muted);
    font-size: .77rem;
    font-weight: 600;
    line-height: 1.38;
}

@media (max-width: 1199.98px) {
    .ds-services-menu {
        width: 880px;
    }

    .ds-services-menu-column {
        grid-template-rows: 1.35rem 7.65rem 2.35rem 1fr;
        padding: .6rem;
    }

    .ds-services-menu-service-block {
        gap: .58rem;
        padding: .6rem;
    }

    .ds-services-menu-main-link {
        font-size: .86rem;
    }

    .ds-services-menu-main-text,
    .ds-company-menu-link-text {
        font-size: .74rem;
    }

    .ds-services-menu-support-links a {
        font-size: .75rem;
    }
}

@media (max-width: 991.98px) {
    .ds-site-header .navbar {
        min-height: 66px;
        padding: .5rem;
    }

    .ds-site-header .navbar-collapse {
        margin-top: .6rem;
        padding: .6rem;
        background: rgba(255, 255, 255, .98);
        border: 1px solid var(--ds-border);
        border-radius: var(--ds-radius-md);
        box-shadow: 0 14px 32px rgba(17, 31, 52, .12);
    }

    .ds-site-header .nav-item {
        padding-right: 0;
        padding-left: 0;
        white-space: normal;
    }

    .ds-site-header .nav-item-highlighted {
        display: inline-block;
        margin-bottom: .35rem;
    }

    .ds-services-menu,
    .ds-company-menu {
        right: auto;
        left: 0;
        width: 100%;
        max-width: none;
        margin-top: .25rem;
        box-shadow: var(--ds-shadow);
    }

    .ds-services-menu-grid {
        display: block;
    }

    .ds-services-menu-column {
        display: block;
        border-right: 0;
        border-bottom: 1px solid var(--ds-border);
    }

        .ds-services-menu-column:last-child {
            border-bottom: 0;
        }

    .ds-services-menu-service-block {
        margin-bottom: .55rem;
    }

    .ds-services-menu-cta {
        width: auto;
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .ds-site-header .header-contact {
        justify-content: center;
        min-height: 28px;
        max-height: 28px;
        padding: 4px 10px 0;
    }

    .ds-site-header .phone-number {
        margin-right: 0;
    }

    .ds-site-header .navbar-brand {
        min-height: auto;
        padding-left: 0;
        background: none;
    }

    .ds-site-header .brand-name {
        font-size: 1.18rem;
        line-height: 1.05;
    }

    .ds-site-header .brand-slogan {
        font-size: 12px;
        line-height: 1.15;
    }
}

section[id],
div[id],
h2[id],
h3[id] {
    scroll-margin-top: var(--ds-header-spacer-height);
}

.masthead-media,
.masthead img.masthead-media,
.masthead video.masthead-media {
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.masthead-video {
    display: block;
}

.ds-masthead-kicker {
    color: var(--ds-orange);
    font-size: 30px;
    font-weight: 600;
    text-shadow: 2px 2px 3px #000;
}

.ds-overlay-btn-rates {
    background-color: var(--ds-navy-ink);
    color: #fff;
}

    .ds-overlay-btn-rates:hover,
    .ds-overlay-btn-rates:focus {
        background-color: #1b2c56;
        color: #fff;
    }

.ds-overlay-btn-book {
    background-color: var(--ds-orange);
    color: #fff;
}

    .ds-overlay-btn-book:hover,
    .ds-overlay-btn-book:focus {
        background-color: var(--ds-orange-hover);
        color: #fff;
    }

.ds-social-facebook {
    color: #1877f2;
}

.ds-social-pinterest {
    color: #bf081c;
}

.ds-social-youtube {
    color: #ff0000;
}

.ds-social-linkedin {
    color: #0a66c2;
}

.ds-social-instagram {
    color: #c32aa3;
}

.ds-confirmation-page {
    background: linear-gradient(90deg, var(--ds-orange), var(--ds-navy-dark));
    min-height: 100vh;
    padding: 7rem 1rem 4rem;
}

.ds-confirmation-shell {
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
}

.ds-confirmation-card {
    background: #E3EEFF;
    border: 1px solid rgba(0, 45, 114, .20);
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(17, 31, 52, .22);
    color: var(--ds-ink);
    overflow: hidden;
}

.ds-confirmation-hero {
    background-image: url(/Content/images/thank-you.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 250px;
    padding: 1.5rem;
    text-align: right;
}

.ds-confirmation-logo {
    height: auto;
    max-width: 190px;
    width: 46%;
}

.ds-confirmation-body {
    background: rgba(255, 255, 255, .68);
    margin: -2.75rem 2rem 2rem;
    border-radius: 18px;
    padding: 1.6rem;
    position: relative;
    z-index: 1;
}

.ds-confirmation-greeting {
    color: var(--ds-ink);
    font-family: "Josefin Slab", serif;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.ds-confirmation-message {
    color: var(--ds-text);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.ds-confirmation-signature {
    margin-top: 1.75rem;
    text-align: center;
}

    .ds-confirmation-signature img {
        height: auto;
        max-width: 100%;
    }

.ds-confirmation-actions {
    margin-top: 1.25rem;
    text-align: center;
}

.ds-confirmation-home-link {
    background: #fff;
    border: 2px solid #fff;
    border-radius: 999px;
    color: var(--ds-navy);
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    padding: .75rem 1.25rem;
    text-decoration: none;
}

    .ds-confirmation-home-link:hover,
    .ds-confirmation-home-link:focus {
        background: #F5F7FA;
        border-color: #F5F7FA;
        color: var(--ds-navy-dark);
        text-decoration: none;
    }

@media (max-width: 767.98px) {
    .ds-confirmation-page {
        padding: 5.5rem .75rem 3rem;
    }

    .ds-confirmation-card {
        border-radius: 18px;
    }

    .ds-confirmation-hero {
        min-height: 190px;
        padding: 1rem;
    }

    .ds-confirmation-logo {
        max-width: 150px;
        width: 48%;
    }

    .ds-confirmation-body {
        margin: -1.75rem 1rem 1.25rem;
        padding: 1.25rem;
    }

    .ds-confirmation-greeting {
        font-size: 1.35rem;
    }
}

.ds-about-page {
    background: #fff;
}

.ds-about-spaceship-card {
    align-items: center;
    background: linear-gradient(135deg, var(--ds-blue-soft) 0%, #FFFFFF 100%);
    border: 1px solid var(--ds-border);
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(17, 31, 52, .10);
    display: flex;
    height: 100%;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
}

.ds-about-spaceship {
    height: auto;
    max-width: 280px;
    width: 85%;
}

.ds-founder-panel {
    background: linear-gradient(135deg, var(--ds-navy-dark) 0%, var(--ds-navy) 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}

    .ds-founder-panel .ds-section-title,
    .ds-founder-panel .ds-section-lead,
    .ds-founder-panel p,
    .ds-founder-panel h2,
    .ds-founder-panel h3 {
        color: #fff;
    }

.ds-founder-video-card {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
    padding: .85rem;
}

.ds-video-container {
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 20px;
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    width: 100%;
}

    .ds-video-container iframe {
        border: 0;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
    }

.ds-about-stat-card {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    color: #fff;
    height: 100%;
    padding: 1rem;
    text-align: center;
}

    .ds-about-stat-card strong {
        color: var(--ds-gold);
        display: block;
        font-size: 1.5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: .25rem;
    }

    .ds-about-stat-card span {
        color: #fff;
        display: block;
        font-size: .9rem;
        font-weight: 700;
        line-height: 1.35;
    }

.ds-about-team-card {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: 22px;
    box-shadow: 0 8px 22px rgba(17, 31, 52, .08);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}

    .ds-about-team-card:hover {
        box-shadow: 0 12px 32px rgba(17, 31, 52, .12);
        transform: translateY(-3px);
    }

.ds-about-team-image-wrap {
    background: var(--ds-blue-soft);
    border-bottom: 1px solid var(--ds-border);
    padding: 1.25rem;
    text-align: center;
}

.ds-about-team-image {
    border-radius: 18px;
    height: 240px;
    max-width: 100%;
    object-fit: contain;
    width: 240px;
}

.ds-about-team-body {
    padding: 1.35rem;
}

    .ds-about-team-body h3 {
        color: var(--ds-ink);
        font-size: 1.18rem;
        font-weight: 800;
        line-height: 1.25;
        margin-bottom: .35rem;
    }

.ds-about-team-title {
    color: var(--ds-orange);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: .85rem;
    text-transform: uppercase;
}

.ds-about-team-bio {
    color: var(--ds-text);
    line-height: 1.65;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .ds-about-spaceship-card {
        margin-top: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .ds-content-card,
    .ds-about-spaceship-card,
    .ds-founder-video-card,
    .ds-cta-panel {
        border-radius: 18px;
    }

    .ds-about-team-image {
        height: 210px;
        width: 210px;
    }
}

.ds-status-page {
    background: linear-gradient(180deg, var(--ds-blue-soft) 0%, #FFFFFF 100%);
    min-height: 70vh;
    padding: 7rem 1rem 4rem;
}

.ds-status-shell {
    margin-left: auto;
    margin-right: auto;
    max-width: 560px;
}

.ds-status-card {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(17, 31, 52, .10);
    overflow: hidden;
}

.ds-status-card-header {
    background: linear-gradient(135deg, var(--ds-navy-dark) 0%, var(--ds-navy) 100%);
    color: #fff;
    padding: 1rem 1.25rem;
}

    .ds-status-card-header h1,
    .ds-status-card-header h2,
    .ds-status-card-header h3,
    .ds-status-card-header p {
        color: #fff;
    }

.ds-status-card-body {
    padding: 1.4rem;
}

.ds-status-title {
    color: var(--ds-ink);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 .65rem;
}

.ds-status-message {
    color: var(--ds-text);
    line-height: 1.6;
    margin: 0 0 1.15rem;
}

.ds-status-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

@media (max-width: 575.98px) {
    .ds-status-page {
        padding: 5.5rem .75rem 3rem;
    }

    .ds-status-card {
        border-radius: 18px;
    }

    .ds-status-card-body {
        padding: 1.15rem;
    }

    .ds-status-actions {
        display: block;
    }
}

.ds-access-form-page {
    background: linear-gradient(180deg, var(--ds-blue-soft) 0%, #FFFFFF 100%);
    min-height: 70vh;
    padding: 7rem 1rem 4rem;
}

.ds-access-form-shell {
    margin-left: auto;
    margin-right: auto;
    max-width: 560px;
}

.ds-access-form-card {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(17, 31, 52, .10);
    overflow: hidden;
}

.ds-access-form-card-body {
    padding: 1.4rem;
}

.ds-access-form-title {
    color: var(--ds-ink);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 .65rem;
}

.ds-access-form-message {
    color: var(--ds-muted);
    line-height: 1.6;
    margin: 0 0 1.15rem;
}

.ds-access-form {
    margin: 0;
}

    .ds-access-form .form-group {
        margin-bottom: .85rem;
    }

        .ds-access-form .form-group.ds-form-group-last {
            margin-bottom: 1.15rem;
        }

    .ds-access-form label {
        color: var(--ds-ink);
        font-size: .86rem;
        font-weight: 800;
        line-height: 1.25;
        margin-bottom: .25rem;
    }

    .ds-access-form .form-control {
        border: 1px solid var(--ds-border-field);
        border-radius: 10px;
        color: var(--ds-ink);
        min-height: 38px;
    }

        .ds-access-form .form-control:focus {
            border-color: var(--ds-navy);
            box-shadow: 0 0 0 .18rem rgba(0, 56, 141, .12);
        }

.ds-access-form-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

@media (max-width: 575.98px) {
    .ds-access-form-page {
        padding: 5.5rem .75rem 3rem;
    }

    .ds-access-form-card {
        border-radius: 18px;
    }

    .ds-access-form-card-body {
        padding: 1.15rem;
    }

    .ds-access-form-actions {
        display: block;
    }
}

.ds-feedback-page {
    background: linear-gradient(180deg, var(--ds-blue-soft) 0%, #FFFFFF 100%);
    min-height: 70vh;
}

.ds-feedback-container {
    padding-top: 7rem;
    padding-bottom: 3rem;
}

.ds-feedback-card {
    margin-left: auto;
    margin-right: auto;
    max-width: 920px;
}

.ds-feedback-status-card {
    margin: 0 auto 1.5rem;
    max-width: 720px;
}

.ds-feedback-customer {
    color: var(--ds-ink);
    font-weight: 800;
}

.ds-feedback-rating-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 1rem auto;
}

.ds-feedback-rating-option {
    text-align: center;
}

.ds-feedback-radio {
    -webkit-appearance: none;
    appearance: none;
    height: 1px;
    opacity: 0;
    position: absolute;
    width: 1px;
}

.ds-feedback-rating-label {
    align-items: center;
    background: #fff;
    border: 3px solid var(--ds-border);
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(17, 31, 52, .08);
    color: var(--ds-navy);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-weight: 800;
    justify-content: center;
    margin: 0;
    min-height: 155px;
    padding: 1.25rem;
    transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    width: 220px;
}

    .ds-feedback-rating-label:hover,
    .ds-feedback-rating-label:focus {
        border-color: var(--ds-orange);
        box-shadow: 0 12px 32px rgba(17, 31, 52, .12);
        transform: translateY(-2px);
    }

.ds-feedback-rating-icon {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: .75rem;
}

.ds-feedback-rating-label span {
    color: var(--ds-ink);
    font-size: 1.2rem;
    line-height: 1.25;
}

.ds-feedback-radio:focus + .ds-feedback-rating-label {
    border-color: var(--ds-orange);
    box-shadow: 0 0 0 .2rem rgba(255, 133, 0, .22);
}

.ds-feedback-radio#good:checked + .ds-feedback-rating-label {
    background: #EAF7ED;
    border-color: #28a745;
    box-shadow: 0 12px 32px rgba(40, 167, 69, .20);
}

.ds-feedback-radio#bad:checked + .ds-feedback-rating-label {
    background: var(--ds-peach);
    border-color: #dc3545;
    box-shadow: 0 12px 32px rgba(220, 53, 69, .18);
}

.ds-feedback-followup-panel {
    display: none;
}

.ds-feedback-comment {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.ds-feedback-submit-wrap {
    padding: 1.25rem 0 .25rem;
}

.ds-feedback-footer-note {
    color: var(--ds-muted);
    font-size: .9rem;
    margin-top: 1.5rem;
}

    .ds-feedback-footer-note p {
        margin-bottom: 0;
    }

@media (max-width: 575.98px) {
    .ds-feedback-container {
        padding-top: 5.5rem;
    }

    .ds-feedback-rating-options {
        display: block;
    }

    .ds-feedback-rating-option {
        margin-bottom: .85rem;
    }

    .ds-feedback-rating-label {
        min-height: 135px;
        width: 100%;
    }

    .ds-feedback-rating-icon {
        font-size: 3.25rem;
    }
}

.ds-pet-page {
    background: #fff;
}

.ds-pet-carousel-card {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(17, 31, 52, .10);
    overflow: hidden;
    padding: .85rem;
}

.ds-pet-carousel {
    border-radius: 18px;
    height: 460px;
    overflow: hidden;
}

    .ds-pet-carousel .carousel-inner,
    .ds-pet-carousel .carousel-item {
        height: 100%;
    }

    .ds-pet-carousel img {
        background: #fff;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        width: 100%;
    }

    .ds-pet-carousel .carousel-indicators {
        bottom: 8px;
    }

    .ds-pet-carousel .carousel-control-prev,
    .ds-pet-carousel .carousel-control-next {
        width: 12%;
    }

@media (max-width: 991.98px) {
    .ds-pet-carousel {
        height: 380px;
        margin-top: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .ds-content-card,
    .ds-pet-carousel-card {
        border-radius: 18px;
    }

    .ds-pet-carousel {
        height: 320px;
    }
}

.ds-rates-page {
    background: #fff;
}

.ds-rates-intro-card {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(17, 31, 52, .10);
    padding: 1.6rem;
}

    .ds-rates-intro-card p {
        color: var(--ds-text);
        line-height: 1.72;
        margin-bottom: 1rem;
    }

        .ds-rates-intro-card p:last-child {
            margin-bottom: 0;
        }

.ds-rate-table-card {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(17, 31, 52, .10);
    overflow: hidden;
}

.ds-rate-table-header {
    background: linear-gradient(135deg, var(--ds-navy-dark) 0%, var(--ds-navy) 100%);
    color: #fff;
    padding: 1.25rem 1.4rem;
    text-align: center;
}

    .ds-rate-table-header h2,
    .ds-rate-table-header p {
        color: #fff;
    }

    .ds-rate-table-header h2 {
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: .4rem;
    }

    .ds-rate-table-header p {
        line-height: 1.55;
        margin-bottom: 0;
    }

.ds-rate-table-wrap {
    padding: 1.25rem;
}

.ds-rate-table {
    margin-bottom: 0;
}

    .ds-rate-table thead th {
        background: var(--ds-blue-soft);
        border-bottom-width: 1px;
        color: var(--ds-ink);
        font-size: .86rem;
        font-weight: 800;
        letter-spacing: .04em;
        text-transform: uppercase;
        vertical-align: middle;
        white-space: nowrap;
    }

    .ds-rate-table tbody td {
        vertical-align: middle;
    }

    .ds-rate-table tfoot td {
        background: var(--ds-blue-soft);
        color: var(--ds-text);
        font-weight: 700;
    }

.ds-rate-location-link {
    color: var(--ds-navy);
    font-weight: 800;
    text-decoration: none;
}

    .ds-rate-location-link:hover,
    .ds-rate-location-link:focus {
        color: var(--ds-orange);
        text-decoration: none;
    }

.ds-rate-actions {
    align-items: center;
    display: inline-flex;
    gap: .4rem;
    justify-content: flex-end;
}

.ds-rate-action-link {
    align-items: center;
    background: var(--ds-blue-soft);
    border: 1px solid var(--ds-border);
    border-radius: 50%;
    color: var(--ds-navy);
    display: inline-flex;
    font-size: 1.05rem;
    height: 36px;
    justify-content: center;
    text-decoration: none;
    width: 36px;
}

    .ds-rate-action-link:hover,
    .ds-rate-action-link:focus {
        background: var(--ds-orange);
        border-color: var(--ds-orange);
        color: #fff;
        text-decoration: none;
    }

.ds-rate-action-icon {
    --fa-secondary-color: #ff9100;
    --fa-secondary-opacity: .9;
}

.ds-rate-action-link:hover .ds-rate-action-icon,
.ds-rate-action-link:focus .ds-rate-action-icon {
    --fa-secondary-color: #ffffff;
    --fa-secondary-opacity: .9;
}

.ds-payment-note {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(17, 31, 52, .08);
    margin-top: 1.25rem;
    padding: 1.25rem;
    text-align: center;
}

.ds-payment-title {
    color: var(--ds-ink);
    display: block;
    font-weight: 800;
    margin-bottom: .65rem;
}

.ds-payment-icons {
    height: auto;
    max-width: 360px;
    width: 100%;
}

.ds-rate-info-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ds-rate-info-card {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(17, 31, 52, .08);
    height: 100%;
    padding: 1.25rem;
}

    .ds-rate-info-card h3,
    .ds-rate-info-card h4 {
        color: var(--ds-ink);
        font-weight: 800;
        line-height: 1.25;
        margin-bottom: .75rem;
    }

.ds-rate-line {
    border-bottom: 1px solid var(--ds-border);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: .55rem 0;
}

    .ds-rate-line:last-child {
        border-bottom: 0;
    }

.ds-rate-line-label {
    color: var(--ds-ink);
    font-weight: 800;
}

.ds-rate-line-value {
    color: var(--ds-text);
    text-align: right;
}

.ds-policy-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .ds-policy-list li {
        color: var(--ds-text);
        line-height: 1.62;
        margin-bottom: .65rem;
        padding-left: 1.75rem;
        position: relative;
    }

        .ds-policy-list li:last-child {
            margin-bottom: 0;
        }

        .ds-policy-list li:before {
            color: var(--ds-navy);
            content: "";
            font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
            font-weight: 900;
            left: 0;
            position: absolute;
            top: .05rem;
        }

.ds-rate-plain-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .ds-rate-plain-list li {
        border-bottom: 1px solid var(--ds-border);
        color: var(--ds-text);
        line-height: 1.62;
        padding: .65rem 0;
    }

        .ds-rate-plain-list li:last-child {
            border-bottom: 0;
        }

.ds-rate-callout {
    background: linear-gradient(135deg, var(--ds-navy-dark) 0%, var(--ds-navy) 100%);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(17, 31, 52, .16);
    color: #fff;
    padding: 1.5rem;
}

    .ds-rate-callout h2,
    .ds-rate-callout h3,
    .ds-rate-callout p,
    .ds-rate-callout li {
        color: #fff;
    }

    .ds-rate-callout a {
        color: #fff;
        font-weight: 800;
        text-decoration: underline;
    }

        .ds-rate-callout a:hover,
        .ds-rate-callout a:focus {
            color: var(--ds-gold);
        }

@media (max-width: 991.98px) {
    .ds-rate-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .ds-rates-intro-card,
    .ds-rate-table-card,
    .ds-rate-info-card,
    .ds-payment-note,
    .ds-rate-callout {
        border-radius: 18px;
    }

    .ds-rate-table-wrap {
        padding: .85rem;
    }

    .ds-rate-table {
        font-size: .86rem;
        min-width: 720px;
    }

    .ds-rate-line {
        display: block;
    }

    .ds-rate-line-value {
        display: block;
        margin-top: .15rem;
        text-align: left;
    }
}

.ds-reviews-page {
    background: #fff;
}

.ds-reviews-intro-card {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(17, 31, 52, .10);
    margin-left: auto;
    margin-right: auto;
    max-width: 960px;
    padding: 1.6rem;
    text-align: center;
}

    .ds-reviews-intro-card .ds-section-lead {
        margin-bottom: 0;
    }

@media (max-width: 767.98px) {
    .ds-reviews-intro-card {
        border-radius: 18px;
        padding: 1.25rem;
    }
}

.ds-sitemap-page {
    background: #fff;
}

.ds-sitemap-card {
    align-items: flex-start;
    display: flex;
    text-decoration: none;
}

    .ds-sitemap-card:hover,
    .ds-sitemap-card:focus {
        text-decoration: none;
    }

    .ds-sitemap-card .ds-icon-circle {
        flex: 0 0 48px;
        margin-bottom: 0;
        margin-right: 1rem;
    }

.ds-sitemap-locations-panel {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: 20px;
    box-shadow: 0 8px 22px rgba(17, 31, 52, .08);
    padding: 1.5rem;
}

    .ds-sitemap-locations-panel a {
        color: var(--ds-navy);
        font-weight: 700;
        text-decoration: none;
    }

        .ds-sitemap-locations-panel a:hover,
        .ds-sitemap-locations-panel a:focus {
            color: var(--ds-orange);
            text-decoration: none;
        }

@media (max-width: 767.98px) {
    .ds-sitemap-locations-panel {
        border-radius: 18px;
        padding: 1.15rem;
    }
}

.ds-simple-thankyou {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(17, 31, 52, .10);
    margin: 2rem auto 3rem;
    max-width: 680px;
    padding: 2rem;
    text-align: center;
}

.ds-simple-thankyou-icon {
    align-items: center;
    background: rgba(0, 56, 141, .10);
    border-radius: 50%;
    color: var(--ds-navy);
    display: inline-flex;
    font-size: 1.6rem;
    height: 58px;
    justify-content: center;
    margin-bottom: 1rem;
    width: 58px;
}

.ds-simple-thankyou-message {
    color: var(--ds-text);
    font-size: 1.08rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.ds-simple-thankyou-actions {
    text-align: center;
}

@media (max-width: 575.98px) {
    .ds-simple-thankyou {
        border-radius: 18px;
        margin: 1.5rem auto 2rem;
        padding: 1.5rem;
    }
}

.ds-simple-thankyou {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(17, 31, 52, .10);
    margin: 2rem auto 3rem;
    max-width: 760px;
    padding: 2rem;
}

.ds-simple-thankyou-centered {
    text-align: center;
}

.ds-simple-thankyou-letter {
    color: var(--ds-text);
    font-size: 1rem;
    line-height: 1.7;
}

    .ds-simple-thankyou-letter p {
        margin-bottom: 1rem;
    }

.ds-simple-thankyou-signature {
    color: var(--ds-ink);
    font-weight: 800;
    margin-top: 1.35rem;
}

.ds-simple-thankyou-actions {
    margin-top: 1.5rem;
    text-align: center;
}

.ds-sitter-page {
    background: #fff;
}

.ds-sitter-hero {
    background-color: var(--ds-navy-dark);
    background-position: center center;
    background-size: cover;
    min-height: 620px;
    overflow: hidden;
    position: relative;
}

    .ds-sitter-hero:before {
        background: linear-gradient(90deg, rgba(0, 45, 114, .92) 0%, rgba(0, 56, 141, .72) 52%, rgba(0, 0, 0, .30) 100%);
        content: "";
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 0;
    }

    .ds-sitter-hero .container {
        position: relative;
        z-index: 1;
    }

.ds-sitter-hero-content {
    padding: 5rem 0;
}

.ds-sitter-hero-kicker {
    color: var(--ds-gold);
    display: inline-block;
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: .8rem;
    text-transform: uppercase;
}

.ds-sitter-hero h1 {
    color: #fff !important;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

.ds-sitter-hero-text {
    color: #fff;
    font-size: 1.14rem;
    line-height: 1.7;
    max-width: 740px;
}

.ds-sitter-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.5rem;
}

.ds-sitter-hero-trust {
    align-items: center;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 20px;
    color: #fff;
    display: flex;
    margin-top: 1.75rem;
    max-width: 720px;
    padding: 1rem 1.15rem;
}

.ds-sitter-stars {
    height: auto;
    max-width: 142px;
    width: 142px;
}

.ds-sitter-quote {
    color: #fff;
    font-style: italic;
    line-height: 1.55;
    margin: 0 0 0 1rem;
}

.ds-sitter-hero-card {
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
    padding: 1.5rem;
}

    .ds-sitter-hero-card h2 {
        color: var(--ds-ink);
        font-size: 1.35rem;
        font-weight: 800;
        margin-bottom: .75rem;
    }

.ds-sitter-process-number {
    align-items: center;
    background: var(--ds-orange);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    font-weight: 800;
    height: 44px;
    justify-content: center;
    margin-bottom: .9rem;
    width: 44px;
}

.ds-sitter-split-image {
    border-radius: 24px;
    box-shadow: 0 16px 38px rgba(17, 31, 52, .14);
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

.ds-sitter-photo-card {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: 26px;
    box-shadow: 0 12px 32px rgba(17, 31, 52, .10);
    padding: .85rem;
}

.ds-sitter-carousel-panel {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: 26px;
    box-shadow: 0 12px 32px rgba(17, 31, 52, .10);
    margin-left: auto;
    margin-right: auto;
    max-width: 920px;
    padding: 2rem;
}

.ds-sitter-carousel {
    text-align: center;
}

    .ds-sitter-carousel .top-row {
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .ds-sitter-carousel .btn-left,
    .ds-sitter-carousel .btn-right {
        align-items: center;
        background: var(--ds-blue-soft);
        border: 1px solid var(--ds-border);
        border-radius: 50%;
        color: var(--ds-navy);
        cursor: pointer;
        display: inline-flex;
        font-size: 1.4rem;
        height: 42px;
        justify-content: center;
        margin: .5rem;
        text-decoration: none;
        width: 42px;
    }

        .ds-sitter-carousel .btn-left:hover,
        .ds-sitter-carousel .btn-right:hover {
            background: var(--ds-orange);
            border-color: var(--ds-orange);
            color: #fff;
        }

    .ds-sitter-carousel .frame {
        align-items: center;
        display: inline-flex;
        justify-content: center;
        min-height: 250px;
        padding: .5rem;
    }

    .ds-sitter-carousel .photo {
        border-radius: 18px;
        box-shadow: 0 8px 22px rgba(17, 31, 52, .12);
        max-height: 250px;
        max-width: 100%;
        object-fit: contain;
    }

    .ds-sitter-carousel .bottom-row {
        margin-top: 1rem;
    }

    .ds-sitter-carousel .dots {
        display: inline-flex;
        flex-wrap: wrap;
        gap: .35rem;
        justify-content: center;
    }

    .ds-sitter-carousel .dot {
        background: var(--ds-border);
        border-radius: 50%;
        cursor: pointer;
        display: inline-block;
        height: 10px;
        width: 10px;
    }

        .ds-sitter-carousel .dot.active {
            background: var(--ds-orange);
        }

.ds-sitter-application-card {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: 26px;
    box-shadow: 0 12px 32px rgba(17, 31, 52, .10);
    margin-left: auto;
    margin-right: auto;
    max-width: 780px;
    padding: 2rem;
    text-align: center;
}

@media (max-width: 991.98px) {
    .ds-sitter-hero {
        min-height: auto;
    }

    .ds-sitter-hero-content {
        padding: 4rem 0;
    }

    .ds-sitter-hero h1 {
        font-size: 2.3rem;
    }

    .ds-sitter-hero-card {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .ds-sitter-hero-content {
        padding: 3rem 0;
    }

    .ds-sitter-hero h1 {
        font-size: 2rem;
    }

    .ds-sitter-hero-trust {
        align-items: flex-start;
        display: block;
    }

    .ds-sitter-quote {
        margin: .75rem 0 0;
    }

    .ds-sitter-carousel-panel,
    .ds-sitter-application-card,
    .ds-sitter-photo-card,
    .ds-sitter-hero-card,
    .ds-sitter-split-image {
        border-radius: 18px;
    }
}

.ds-modal-logo {
    height: auto;
    max-width: 150px;
}

.ds-modal-form-intro {
    color: var(--ds-text);
    line-height: 1.58;
    margin-bottom: .8rem;
}

.ds-capabilities-panel {
    max-height: 240px;
    overflow-y: auto;
}

.ds-press-page {
    background: #fff;
}

.ds-press-hero-panel {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius-2xl);
    box-shadow: var(--ds-shadow-medium);
    overflow: hidden;
}

.ds-press-hero-copy {
    height: 100%;
    padding: 2rem;
}

.ds-press-hero-title {
    color: var(--ds-ink);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 1rem;
}

.ds-press-hero-text {
    color: var(--ds-text);
    font-size: 1rem;
    line-height: 1.72;
    margin-bottom: 1.25rem;
}

.ds-press-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

    .ds-press-hero-actions .btn {
        flex: 0 0 auto;
    }

.ds-press-hero-media {
    height: 100%;
    min-height: 360px;
    overflow: hidden;
}

.ds-press-hero-image {
    height: 100%;
    object-fit: cover;
    object-position: center center;
    width: 100%;
}

.ds-press-release-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .ds-press-release-card:hover {
        transform: translateY(-3px);
    }

.ds-press-release-thumb-wrap {
    position: relative;
    background: var(--ds-blue-soft);
    height: 265px;
    overflow: hidden;
}

.ds-press-release-thumb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.ds-press-release-type {
    position: absolute;
    right: .85rem;
    bottom: .85rem;
    display: inline-flex;
    align-items: center;
    border-radius: var(--ds-radius-pill);
    background: rgba(0, 45, 114, .92);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    line-height: 1.2;
    padding: .38rem .7rem;
}

.ds-press-release-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 1.2rem;
}

.ds-press-release-content {
    flex: 1 1 auto;
}

.ds-press-release-meta {
    color: var(--ds-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: .78rem;
    font-weight: 800;
    gap: .5rem;
    letter-spacing: .04em;
    margin-bottom: .65rem;
    text-transform: uppercase;
}

    .ds-press-release-meta span:after {
        color: var(--ds-border);
        content: "•";
        margin-left: .5rem;
    }

    .ds-press-release-meta span:last-child:after {
        content: "";
        margin-left: 0;
    }

.ds-press-release-actions {
    align-items: center;
    border-top: 1px solid var(--ds-border);
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: flex-start;
    margin-top: 1rem;
    padding-top: 1rem;
}

    .ds-press-release-actions .btn {
        flex: 0 0 auto;
    }

.ds-press-small-note {
    color: var(--ds-muted);
    font-size: .92rem;
    line-height: 1.6;
}

.ds-press-release-modal .modal-dialog {
    max-width: 980px;
    width: calc(100% - 2rem);
}

.ds-press-release-modal .modal-content {
    border: 0;
    border-radius: var(--ds-radius-lg);
    box-shadow: var(--ds-shadow-strong);
    overflow: hidden;
}

.ds-press-release-modal .modal-header {
    background: var(--ds-navy-dark);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.ds-press-release-modal .modal-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 0;
}

.ds-press-release-modal-date {
    color: rgba(255, 255, 255, .76);
    display: block;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: .2rem;
    text-transform: uppercase;
}

.ds-press-release-modal .close {
    color: #fff;
    opacity: .9;
    text-shadow: none;
}

    .ds-press-release-modal .close:hover,
    .ds-press-release-modal .close:focus {
        color: #fff;
        opacity: 1;
    }

.ds-press-release-modal .modal-body {
    padding: 1rem;
    background: #f8f9fa;
}

.ds-press-release-pdf-wrap {
    height: min(68vh, 680px);
    min-height: 420px;
    overflow: hidden;
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius-sm);
    background: #fff;
}

.ds-press-release-pdf {
    width: 100%;
    height: 100%;
    border: 0;
}

.ds-press-release-video-wrap {
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius-sm);
    overflow: hidden;
    background: #000;
}

.ds-press-release-video {
    display: block;
    width: 100%;
    max-height: 68vh;
    background: #000;
}

.ds-press-release-pdf-fallback {
    color: var(--ds-muted);
    font-size: .9rem;
    line-height: 1.55;
    margin: .75rem 0 0;
    text-align: center;
}

.ds-press-release-modal .modal-footer {
    border-top: 1px solid var(--ds-border);
    background: #fff;
}

.ds-press-stat {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius-lg);
    box-shadow: var(--ds-shadow-soft);
    padding: 1.35rem;
    text-align: center;
}

.ds-press-stat-icon {
    align-items: center;
    background: rgba(0, 56, 141, .10);
    border-radius: 50%;
    color: var(--ds-navy);
    display: inline-flex;
    font-size: 1.2rem;
    height: 46px;
    justify-content: center;
    margin-bottom: .75rem;
    width: 46px;
}

.ds-press-stat-number {
    color: var(--ds-navy-dark);
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: .25rem;
}

.ds-press-stat-label {
    color: var(--ds-muted);
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .06em;
    margin-bottom: 0;
    text-transform: uppercase;
}

.ds-press-info-column {
    display: grid;
    gap: 1rem;
}

.ds-press-info-item {
    display: flex;
    gap: .85rem;
}

.ds-press-info-icon {
    align-items: center;
    background: var(--ds-blue-soft);
    border: 1px solid var(--ds-border);
    border-radius: 50%;
    color: var(--ds-navy);
    display: inline-flex;
    flex: 0 0 42px;
    font-size: 1rem;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.ds-press-info-title {
    color: var(--ds-ink);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: .35rem;
}

.ds-press-info-text {
    color: var(--ds-text);
    font-size: .94rem;
    line-height: 1.62;
    margin-bottom: .45rem;
}

.ds-press-inline-link {
    color: var(--ds-navy);
    font-weight: 800;
    text-decoration: none;
}

    .ds-press-inline-link:hover,
    .ds-press-inline-link:focus {
        color: var(--ds-orange);
        text-decoration: none;
    }

.ds-press-contact-panel {
    background: var(--ds-blue-soft);
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius-lg);
    box-shadow: var(--ds-shadow-soft);
    padding: 1.35rem;
}

    .ds-press-contact-panel p {
        color: var(--ds-text);
        line-height: 1.7;
    }

.ds-press-brand-line {
    color: var(--ds-navy-dark) !important;
    font-size: 1.35rem;
    font-weight: 900;
    text-align: center;
}

.ds-press-contact-actions {
    text-align: center;
}

@media (max-width: 991.98px) {
    .ds-press-hero-media {
        min-height: 300px;
    }

    .ds-press-release-thumb-wrap {
        height: 255px;
    }
}

@media (max-width: 767.98px) {
    .ds-press-hero-copy {
        padding: 1.4rem;
    }

    .ds-press-hero-title {
        font-size: 1.55rem;
    }

    .ds-press-hero-actions,
    .ds-press-release-actions {
        display: block;
    }

        .ds-press-hero-actions .btn,
        .ds-press-release-actions .btn {
            display: flex;
            margin-bottom: .55rem;
            width: 100%;
        }

            .ds-press-hero-actions .btn:last-child,
            .ds-press-release-actions .btn:last-child {
                margin-bottom: 0;
            }

    .ds-press-release-thumb-wrap {
        height: 235px;
    }

    .ds-press-release-modal .modal-dialog {
        width: calc(100% - 1rem);
        margin: .5rem auto;
    }

    .ds-press-release-pdf-wrap {
        height: 62vh;
        min-height: 330px;
    }
}

.ds-navy-panel {
    color: var(--ds-white);
    background: var(--ds-navy-dark);
    border-radius: var(--ds-radius-lg);
    padding: 1.5rem;
}

    .ds-navy-panel h1,
    .ds-navy-panel h2,
    .ds-navy-panel h3,
    .ds-navy-panel h4,
    .ds-navy-panel h5,
    .ds-navy-panel h6,
    .ds-navy-panel p {
        color: var(--ds-white);
    }

    .ds-navy-panel a:not(.btn) {
        color: var(--ds-white);
        text-decoration: underline;
    }

.ds-sitter-application-modal .modal-dialog {
    max-width: 1140px;
}

.ds-sitter-application-modal .modal-content {
    border: 0;
    border-radius: .3rem;
    box-shadow: var(--ds-shadow-medium);
    overflow: hidden;
}

.ds-sitter-application-modal .ds-sitter-form-state {
    display: block;
}

.ds-sitter-application-modal .ds-sitter-thankyou-state {
    display: none;
}

.ds-sitter-application-modal.thank-you .ds-sitter-form-state {
    display: none;
}

.ds-sitter-application-modal.thank-you .ds-sitter-thankyou-state {
    display: block;
}

.ds-sitter-application-modal .modal-header {
    align-items: center;
    padding: 1rem 1.5rem;
    color: #fff;
    background: var(--ds-navy-dark);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.ds-sitter-application-modal .modal-title {
    margin-bottom: 0;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.35;
}

.ds-sitter-application-modal .close {
    color: #fff;
    opacity: .9;
    text-shadow: none;
}

    .ds-sitter-application-modal .close:hover,
    .ds-sitter-application-modal .close:focus {
        color: #fff;
        opacity: 1;
    }

.ds-sitter-application-modal .modal-body {
    padding: 1.35rem 1.5rem;
    background: #fff;
    overflow-x: hidden;
}

.ds-sitter-application-modal .modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .5rem;
    padding: .9rem 1.5rem;
    background: #fff;
    border-top: 1px solid #dee2e6;
}

.ds-sitter-application-modal .ds-form-fields-body {
    width: 100%;
    max-width: none;
    padding: 0;
    overflow: visible;
}

.ds-sitter-application-modal .form-row {
    margin-right: -5px;
    margin-left: -5px;
}

    .ds-sitter-application-modal .form-row > .col,
    .ds-sitter-application-modal .form-row > [class*="col-"] {
        padding-right: 5px;
        padding-left: 5px;
        margin-bottom: .8rem;
    }

.ds-sitter-application-modal .ds-modal-form-intro {
    margin-bottom: 1rem;
    color: var(--ds-text);
    font-size: .92rem;
    line-height: 1.55;
}

.ds-sitter-application-modal .ds-form-label {
    margin-bottom: .25rem;
    color: var(--ds-navy-dark);
    font-size: .875rem;
    font-weight: 700;
    line-height: 1.35;
}

.ds-sitter-application-modal .form-control,
.ds-sitter-application-modal .form-control-sm {
    border-color: #ced4da;
    font-size: .875rem;
}

.ds-sitter-application-modal .form-control-sm {
    min-height: calc(1.5em + .5rem + 2px);
}

.ds-sitter-application-modal textarea.form-control-sm {
    min-height: 76px;
}

.ds-sitter-application-modal .btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ds-sitter-application-modal .ds-form-section-title {
    margin: .6rem 0 .8rem 0;
    padding-bottom: .45rem;
    border-bottom: 1px solid #dee2e6;
    color: var(--ds-navy-dark);
    font-size: 1rem;
    font-weight: 800;
}

.ds-sitter-application-modal .ds-form-alert {
    font-size: .875rem;
    line-height: 1.5;
}

.ds-sitter-application-modal .ds-checkbox-panel {
    height: auto;
    min-height: calc(1.5em + .5rem + 2px);
    padding: .5rem .75rem;
    line-height: 1.45;
}

    .ds-sitter-application-modal .ds-checkbox-panel .form-check {
        margin-bottom: .25rem;
    }

.ds-sitter-application-modal .ds-capabilities-panel {
    max-height: 240px;
    overflow-y: auto;
}

.ds-sitter-application-modal .table-responsive {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
}

.ds-sitter-application-modal .table,
.ds-sitter-application-modal .table-sm {
    margin-bottom: 0;
    font-size: .875rem;
}

    .ds-sitter-application-modal .table th {
        color: var(--ds-navy-dark);
        font-size: .8rem;
        line-height: 1.25;
        white-space: nowrap;
        background: #f8f9fa;
    }

    .ds-sitter-application-modal .table td {
        vertical-align: middle;
    }

.ds-sitter-application-modal #btn-submitting {
    display: none;
}

.ds-sitter-application-modal.is-submitting #btn-submit {
    display: none;
}

.ds-sitter-application-modal.is-submitting #btn-submitting {
    display: inline-flex;
}

.ds-sitter-application-modal.is-submitting #btn-cancel {
    display: none;
}

.ds-sitter-thankyou-state .modal-body {
    padding: 2.75rem 1.5rem;
    text-align: center;
    background: #fff;
}

.ds-sitter-thankyou-state h3 {
    margin-top: 1rem;
    color: var(--ds-navy-dark);
    font-weight: 800;
}

.ds-sitter-thankyou-state h5 {
    color: var(--ds-text);
    line-height: 1.6;
}

.ds-sitter-application-modal .ds-modal-logo {
    max-width: 150px;
    height: auto;
}

@media (max-width: 991.98px) {
    .ds-sitter-application-modal .modal-dialog {
        width: calc(100% - 1rem);
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .ds-sitter-application-modal .modal-dialog {
        max-height: calc(100vh - 1rem);
        margin: .5rem auto;
    }

    .ds-sitter-application-modal .modal-content,
    .ds-sitter-application-modal .ds-sitter-form-state,
    .ds-sitter-application-modal .ds-sitter-application-form,
    .ds-sitter-application-modal #sitter-form {
        max-height: calc(100vh - 1rem);
    }

    .ds-sitter-application-modal .modal-footer {
        align-items: stretch;
        flex-direction: column;
    }

        .ds-sitter-application-modal .modal-footer .btn {
            width: 100%;
        }
}

/* ========================================================================== 
   Babysitters Rates Calculator
   ========================================================================== */

.ds-rate-calculator-card {
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius-xl);
    background: var(--ds-white);
    box-shadow: var(--ds-shadow-medium);
    overflow: hidden;
}

.ds-rate-calculator-form-panel {
    height: 100%;
    padding: 1.5rem;
    background: var(--ds-white);
}

.ds-rate-calculator-title {
    margin-bottom: .65rem;
    color: var(--ds-navy-dark);
    font-weight: 850;
    line-height: 1.2;
}

.ds-rate-calculator-lead {
    margin-bottom: .85rem;
    color: var(--ds-text);
    font-size: .96rem;
    line-height: 1.6;
}

.ds-rate-calculator-note {
    margin-bottom: 1.1rem;
    padding: .75rem .9rem;
    border-left: 4px solid var(--ds-orange);
    border-radius: var(--ds-radius-sm);
    color: var(--ds-text);
    background: var(--ds-blue-soft);
    font-size: .86rem;
    font-weight: 600;
    line-height: 1.5;
}

.ds-rate-calculator-form {
    margin-bottom: 0;
}

    .ds-rate-calculator-form .form-group {
        margin-bottom: .9rem;
    }

    .ds-rate-calculator-form .form-control,
    .ds-rate-calculator-form .form-control-sm {
        border-color: var(--ds-border-field);
        color: var(--ds-text);
        background-color: var(--ds-white);
    }

        .ds-rate-calculator-form .form-control:focus,
        .ds-rate-calculator-form .form-control-sm:focus {
            border-color: var(--ds-orange);
            box-shadow: 0 0 0 .15rem var(--ds-focus-ring);
        }

.ds-rate-calculator-result-panel {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.5rem;
    color: var(--ds-white);
    background: linear-gradient(145deg, rgba(13, 42, 75, .98), rgba(22, 73, 119, .96));
}

.ds-rate-calculator-result-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.ds-rate-calculator-result-kicker {
    display: block;
    margin-bottom: .25rem;
    color: rgba(255, 255, 255, .76);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.ds-rate-calculator-total {
    color: var(--ds-white);
    font-size: 2.35rem;
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.05;
}

.ds-rate-calculator-breakdown {
    display: grid;
    gap: .55rem;
    margin-bottom: 1rem;
}

.ds-rate-calculator-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: .85rem;
    padding-bottom: .45rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .85);
    font-size: .86rem;
    line-height: 1.35;
}

    .ds-rate-calculator-row strong {
        color: var(--ds-white);
        font-weight: 850;
        text-align: right;
        white-space: nowrap;
    }

.ds-rate-calculator-messages {
    display: grid;
    gap: .45rem;
    margin-top: auto;
    margin-bottom: 1rem;
}

.ds-rate-calculator-message {
    padding: .55rem .65rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--ds-radius-sm);
    color: rgba(255, 255, 255, .88);
    background: rgba(255, 255, 255, .08);
    font-size: .78rem;
    font-weight: 600;
    line-height: 1.45;
}

.ds-rate-calculator-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

    .ds-rate-calculator-actions .btn {
        flex: 0 0 auto;
    }

@media (max-width: 991.98px) {
    .ds-rate-calculator-form-panel,
    .ds-rate-calculator-result-panel {
        padding: 1.25rem;
    }

    .ds-rate-calculator-result-panel {
        min-height: auto;
    }

    .ds-rate-calculator-total {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .ds-rate-calculator-form-panel,
    .ds-rate-calculator-result-panel {
        padding: 1rem;
    }

    .ds-rate-calculator-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .ds-rate-calculator-actions .btn {
            width: 100%;
        }
}


/* ==========================================================================
   FINAL OVERRIDES - DS Dropdowns Over Legacy CSS
   ========================================================================== */

.ds-site-header .dropdown-menu {
    margin-top: 1.65rem !important;
    border: 1px solid var(--ds-border) !important;
    border-radius: var(--ds-radius-md) !important;
    background: var(--ds-white) !important;
    box-shadow: var(--ds-shadow-strong) !important;
}

.ds-site-header .dropdown-item {
    color: var(--ds-ink) !important;
    font-weight: 700 !important;
    padding: .55rem 1.15rem !important;
    text-decoration: none !important;
}

    .ds-site-header .dropdown-item:hover,
    .ds-site-header .dropdown-item:focus {
        color: var(--ds-navy) !important;
        background: var(--ds-blue-soft) !important;
        text-decoration: none !important;
    }

.ds-services-nav,
.ds-company-nav {
    position: relative !important;
}

.ds-services-menu {
    right: 0 !important;
    left: auto !important;
    width: 920px !important;
    max-width: calc(100vw - 2rem) !important;
    margin-top: 1.65rem !important;
    padding: 0 !important;
    border: 1px solid var(--ds-border) !important;
    border-radius: var(--ds-radius-md) !important;
    background: var(--ds-white) !important;
    box-shadow: var(--ds-shadow-strong) !important;
    overflow: hidden !important;
    transform: none !important;
}

.ds-company-menu {
    right: 0 !important;
    left: auto !important;
    width: 360px !important;
    max-width: calc(100vw - 2rem) !important;
    margin-top: 1.65rem !important;
    padding: 0 !important;
    border: 1px solid var(--ds-border) !important;
    border-radius: var(--ds-radius-md) !important;
    background: var(--ds-white) !important;
    box-shadow: var(--ds-shadow-strong) !important;
    overflow: hidden !important;
    transform: none !important;
}

.ds-services-menu-intro,
.ds-company-menu-intro {
    padding: .8rem 1rem !important;
    background: var(--ds-white) !important;
    border-bottom: 1px solid var(--ds-border) !important;
}

.ds-services-menu-intro-kicker,
.ds-company-menu-intro-kicker {
    margin-bottom: .15rem !important;
    color: var(--ds-orange) !important;
    font-size: .72rem !important;
    font-weight: 900 !important;
    letter-spacing: .08em !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
}

.ds-services-menu-intro-text,
.ds-company-menu-intro-text {
    color: var(--ds-navy-dark) !important;
    font-size: .9rem !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
}

.ds-services-menu-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: .45rem !important;
    background: var(--ds-white) !important;
}

.ds-services-menu-column {
    display: grid !important;
    grid-template-rows: 1.35rem 7.15rem 2.35rem 1fr !important;
    min-width: 0 !important;
    padding: .7rem !important;
    border-right: 1px solid var(--ds-border) !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
}

    .ds-services-menu-column:last-child {
        border-right: 0 !important;
    }

.ds-services-menu-group-label {
    margin: 0 0 .55rem !important;
    color: var(--ds-muted) !important;
    font-size: .72rem !important;
    font-weight: 900 !important;
    letter-spacing: .07em !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
}

.ds-services-menu-service-block,
.ds-company-menu-link {
    display: grid !important;
    grid-template-columns: 34px 1fr !important;
    gap: .68rem !important;
    align-items: start !important;
    min-width: 0 !important;
    padding: .7rem !important;
    color: var(--ds-text) !important;
    border-radius: var(--ds-radius-sm) !important;
    text-decoration: none !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
}

.ds-services-menu-service-block {
    align-self: start !important;
    margin: 0 0 .65rem !important;
}

    .ds-services-menu-service-block:hover,
    .ds-services-menu-service-block:focus,
    .ds-company-menu-link:hover,
    .ds-company-menu-link:focus {
        color: var(--ds-text) !important;
        background: var(--ds-blue-soft) !important;
        text-decoration: none !important;
    }

.ds-services-menu-icon,
.ds-company-menu-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    color: var(--ds-navy-dark) !important;
    background: var(--ds-bg-white) !important;
    border-radius: var(--ds-radius-pill) !important;
    font-size: 1rem !important;
    line-height: 1 !important;
}

.ds-services-menu-service-block:hover .ds-services-menu-icon,
.ds-services-menu-service-block:focus .ds-services-menu-icon,
.ds-company-menu-link:hover .ds-company-menu-icon,
.ds-company-menu-link:focus .ds-company-menu-icon {
    color: var(--ds-white) !important;
    background: var(--ds-orange) !important;
}

.ds-services-menu-main-link,
.ds-company-menu-link-title {
    display: block !important;
    margin-bottom: .14rem !important;
    color: var(--ds-navy-dark) !important;
    font-size: .9rem !important;
    font-weight: 900 !important;
    line-height: 1.22 !important;
    text-decoration: none !important;
}

.ds-services-menu-main-text,
.ds-company-menu-link-text {
    display: block !important;
    max-width: 100% !important;
    margin-bottom: 0 !important;
    color: var(--ds-muted) !important;
    font-size: .77rem !important;
    font-weight: 600 !important;
    line-height: 1.38 !important;
}

.ds-services-menu-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: start !important;
    width: 100% !important;
    min-height: 32px !important;
    margin: 0 0 .65rem !important;
    padding: .35rem .65rem !important;
    color: var(--ds-white) !important;
    background: var(--ds-orange) !important;
    border-radius: var(--ds-radius-pill) !important;
    font-size: .78rem !important;
    font-weight: 850 !important;
    line-height: 1.2 !important;
    text-align: center !important;
    text-decoration: none !important;
}

    .ds-services-menu-cta:hover,
    .ds-services-menu-cta:focus {
        color: var(--ds-white) !important;
        background: var(--ds-orange-hover) !important;
        text-decoration: none !important;
    }

.ds-services-menu-support-links {
    display: grid !important;
    align-self: start !important;
    gap: .32rem !important;
    padding-top: .6rem !important;
    border-top: 1px solid var(--ds-border) !important;
}

    .ds-services-menu-support-links a {
        display: block !important;
        color: var(--ds-text) !important;
        font-size: .78rem !important;
        font-weight: 700 !important;
        line-height: 1.35 !important;
        text-decoration: none !important;
    }

        .ds-services-menu-support-links a:hover,
        .ds-services-menu-support-links a:focus {
            color: var(--ds-orange) !important;
            text-decoration: underline !important;
        }

.ds-company-menu-body {
    display: grid !important;
    gap: 0 !important;
    padding: .45rem !important;
    background: var(--ds-white) !important;
}

/* ==========================================================================
   FINAL OVERRIDES - Responsive Header/Dropdown Rules
   ========================================================================== */

@media (max-width: 1199.98px) {
    .ds-services-menu {
        width: 880px !important;
    }

    .ds-services-menu-column {
        grid-template-rows: 1.35rem 7.65rem 2.35rem 1fr !important;
        padding: .6rem !important;
    }

    .ds-services-menu-service-block {
        gap: .58rem !important;
        padding: .6rem !important;
    }

    .ds-services-menu-main-link {
        font-size: .86rem !important;
    }

    .ds-services-menu-main-text,
    .ds-company-menu-link-text {
        font-size: .74rem !important;
    }

    .ds-services-menu-support-links a {
        font-size: .75rem !important;
    }
}

@media (max-width: 991.98px) {
    .ds-site-header .navbar {
        min-height: 66px !important;
        padding: .5rem !important;
    }

    .ds-site-header .navbar-collapse {
        margin-top: .6rem !important;
        padding: .6rem !important;
        background: rgba(255, 255, 255, .98) !important;
        border: 1px solid var(--ds-border) !important;
        border-radius: var(--ds-radius-md) !important;
        box-shadow: 0 14px 32px rgba(17, 31, 52, .12) !important;
    }

    .ds-site-header .nav-item {
        padding-right: 0 !important;
        padding-left: 0 !important;
        white-space: normal !important;
    }

    .ds-site-header .nav-item-highlighted {
        display: inline-block !important;
        margin-bottom: .35rem !important;
    }

    .ds-services-menu,
    .ds-company-menu {
        right: auto !important;
        left: 0 !important;
        width: 100% !important;
        max-width: none !important;
        margin-top: .25rem !important;
        box-shadow: var(--ds-shadow) !important;
    }

    .ds-services-menu-grid {
        display: block !important;
    }

    .ds-services-menu-column {
        display: block !important;
        border-right: 0 !important;
        border-bottom: 1px solid var(--ds-border) !important;
    }

        .ds-services-menu-column:last-child {
            border-bottom: 0 !important;
        }

    .ds-services-menu-service-block {
        margin-bottom: .55rem !important;
    }

    .ds-services-menu-cta {
        width: auto !important;
        max-width: 100% !important;
    }
}

@media (max-width: 767.98px) {
    .ds-site-header .header-contact {
        justify-content: center !important;
        min-height: 28px !important;
        max-height: 28px !important;
        padding: 4px 10px 0 !important;
    }

    .ds-site-header .phone-number {
        margin-right: 0 !important;
    }

    .ds-site-header .navbar-brand {
        min-height: auto !important;
        padding-left: 0 !important;
        background: none !important;
    }

    .ds-site-header .brand-name {
        font-size: 1.18rem !important;
        line-height: 1.05 !important;
    }

    .ds-site-header .brand-slogan {
        font-size: 12px !important;
        line-height: 1.15 !important;
    }
}


/* ==========================================================================
   99. Final Recovery Overrides - Site Width, Footer, Links, City Links
   ==========================================================================
   Purpose:
   - Restore professional layout after legacy CSS removal/migration.
   - Keep site.min.css loaded for legacy compatibility.
   - Override legacy global blue/underlined link styling inside DS components.
   - Restore site width, footer styling, compact static city links, and cross-link
     link presentation.
   ========================================================================== */


/* ==========================================================================
   99.01 Site Width
   ========================================================================== */

:root {
    --ds-container-max: 1320px;
}

@media (min-width: 1200px) {
    .container {
        max-width: var(--ds-container-max);
    }
}


/* ==========================================================================
   99.02 DS Link Reset
   ==========================================================================
   Legacy site.css contains a global a {} rule that turns many links blue and
   underlined. These DS component scopes should own their own link styling.
   ========================================================================== */

.ds-site-header a,
.ds-site-footer a,
.ds-footer-bottom a,
.ds-card a,
.ds-content-card a,
.ds-feature-card a,
.ds-cta-panel a,
.ds-national-link-groups a,
.vc-static-city-links a,
.vc-static-city-links-compact a,
.vc-cross-links a,
.vc-compact-link-list a,
.ds-footer-link,
.ds-footer-contact-link,
.ds-footer-bottom-links a {
    text-decoration: none;
}

    .ds-site-header a:hover,
    .ds-site-header a:focus,
    .ds-site-footer a:hover,
    .ds-site-footer a:focus,
    .ds-footer-bottom a:hover,
    .ds-footer-bottom a:focus,
    .ds-card a:hover,
    .ds-card a:focus,
    .ds-content-card a:hover,
    .ds-content-card a:focus,
    .ds-feature-card a:hover,
    .ds-feature-card a:focus,
    .ds-national-link-groups a:hover,
    .ds-national-link-groups a:focus,
    .vc-static-city-links a:hover,
    .vc-static-city-links a:focus,
    .vc-static-city-links-compact a:hover,
    .vc-static-city-links-compact a:focus,
    .vc-cross-links a:hover,
    .vc-cross-links a:focus,
    .vc-compact-link-list a:hover,
    .vc-compact-link-list a:focus {
        text-decoration: none;
    }


/* ==========================================================================
   99.03 Footer Shell
   ========================================================================== */

.ds-site-footer {
    background: linear-gradient(135deg, #101827 0%, #0B2F63 100%);
    color: rgba(255, 255, 255, .82);
}

    .ds-site-footer .container,
    .ds-footer-bottom .container {
        max-width: var(--ds-container-max);
    }

    .ds-site-footer p,
    .ds-site-footer li,
    .ds-site-footer span {
        color: rgba(255, 255, 255, .78);
    }

.ds-footer-brand-card {
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--ds-radius-lg);
    box-shadow: var(--ds-shadow-soft);
    padding: 1.25rem;
    text-align: center;
}

.ds-footer-logo {
    display: block;
    height: auto;
    margin: 0 auto .75rem;
    max-width: 170px;
    width: 100%;
}

.ds-footer-slogan {
    color: var(--ds-navy-dark) !important;
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: .75rem;
}

.ds-footer-women-owned,
.ds-footer-badge,
.ds-footer-certification,
.ds-footer-brand-card img:last-child {
    display: block;
    height: auto;
    margin: .75rem auto 0;
    max-width: 110px;
    width: auto;
}

/* ==========================================================================
   Footer badge image sizing
   ========================================================================== */

.ds-footer-badge {
    display: block;
    width: 100%;
    max-width: 100%;
}

.ds-footer-badge img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.ds-footer-heading {
    color: var(--ds-white);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.2;
    margin-bottom: .85rem;
    position: relative;
    text-transform: uppercase;
}

    .ds-footer-heading:after {
        background: var(--ds-orange);
        border-radius: var(--ds-radius-pill);
        content: "";
        display: block;
        height: 3px;
        margin-top: .45rem;
        width: 28px;
    }

.ds-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .ds-footer-list li {
        line-height: 1.35;
        margin-bottom: .42rem;
    }

.ds-footer-link,
.ds-footer-contact-link {
    color: rgba(255, 255, 255, .84);
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
}

    .ds-footer-link:hover,
    .ds-footer-link:focus,
    .ds-footer-contact-link:hover,
    .ds-footer-contact-link:focus {
        color: var(--ds-orange);
        text-decoration: none;
    }

.ds-footer-muted {
    color: rgba(255, 255, 255, .64);
    font-size: .82rem;
    line-height: 1.45;
}

.ds-footer-contact-item {
    align-items: flex-start;
    display: flex;
    gap: .55rem;
    margin-bottom: .75rem;
}

    .ds-footer-contact-item i {
        color: var(--ds-orange);
        flex: 0 0 18px;
        font-size: .95rem;
        line-height: 1.35;
        margin-top: .1rem;
    }

.ds-footer-bottom {
    background: #08111F;
    color: rgba(255, 255, 255, .76);
    padding: 1.15rem 0;
}

.ds-footer-legal {
    color: rgba(255, 255, 255, .70);
    font-size: .78rem;
    line-height: 1.55;
    margin-bottom: .35rem;
}

.ds-footer-bottom-links {
    color: rgba(255, 255, 255, .64);
    font-size: .82rem;
    font-weight: 700;
}

    .ds-footer-bottom-links a {
        color: rgba(255, 255, 255, .82);
        text-decoration: none;
    }

        .ds-footer-bottom-links a:hover,
        .ds-footer-bottom-links a:focus {
            color: var(--ds-orange);
            text-decoration: none;
        }

.ds-footer-social {
    align-items: center;
    display: flex;
    gap: .45rem;
    justify-content: flex-end;
}

.ds-footer-social-link {
    align-items: center;
    background: rgba(255, 255, 255, .94);
    border-radius: 50%;
    color: var(--ds-navy-dark);
    display: inline-flex;
    font-size: .86rem;
    height: 32px;
    justify-content: center;
    text-decoration: none;
    transition: background-color .18s ease, transform .18s ease;
    width: 32px;
}

    .ds-footer-social-link:hover,
    .ds-footer-social-link:focus {
        background: var(--ds-orange);
        color: var(--ds-white);
        text-decoration: none;
        transform: translateY(-2px);
    }

        .ds-footer-social-link:hover i,
        .ds-footer-social-link:focus i {
            color: var(--ds-white);
        }


/* ==========================================================================
   99.04 Static City Links - Full Partial
   ========================================================================== */

.vc-static-city-links {
    margin-top: 2rem;
}

.vc-static-city-links-section,
.vc-city-links-section,
.vc-cross-links-section {
    padding: 2.75rem 0;
}

.vc-static-city-links-inner,
.vc-city-links-inner,
.vc-cross-links-inner {
    max-width: var(--ds-container-max);
}

.vc-static-city-links-heading,
.vc-city-links-heading,
.vc-cross-links-heading {
    color: var(--ds-ink);
    font-size: 1.45rem;
    font-weight: 850;
    line-height: 1.25;
    margin-bottom: .55rem;
}

.vc-static-city-links-intro,
.vc-city-links-intro,
.vc-cross-links-intro {
    color: var(--ds-text);
    font-size: .96rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    max-width: 920px;
}

.vc-static-link-group,
.vc-city-link-group,
.vc-cross-link-group {
    margin-bottom: 1.35rem;
}

.vc-static-link-group-title,
.vc-city-link-group-title,
.vc-cross-link-group-title {
    color: var(--ds-ink);
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.25;
    margin-bottom: .55rem;
}

.vc-static-link-list,
.vc-city-link-list,
.vc-cross-link-list {
    column-count: 4;
    column-gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .vc-static-link-list li,
    .vc-city-link-list li,
    .vc-cross-link-list li {
        break-inside: avoid;
        line-height: 1.35;
        margin-bottom: .32rem;
    }

    .vc-static-link-list a,
    .vc-city-link-list a,
    .vc-cross-link-list a,
    .vc-cross-links a {
        color: var(--ds-navy);
        display: inline-block;
        font-size: .9rem;
        font-weight: 650;
        line-height: 1.35;
        text-decoration: none;
    }

        .vc-static-link-list a:hover,
        .vc-static-link-list a:focus,
        .vc-city-link-list a:hover,
        .vc-city-link-list a:focus,
        .vc-cross-link-list a:hover,
        .vc-cross-link-list a:focus,
        .vc-cross-links a:hover,
        .vc-cross-links a:focus {
            color: var(--ds-orange);
            text-decoration: none;
        }


/* ==========================================================================
   99.05 Static City Links - Homepage Compact Partial
   ========================================================================== */

.ds-national-link-groups {
    margin-top: 1rem;
}

.vc-static-city-links-compact {
    display: grid;
    gap: .85rem;
}

.vc-compact-link-group {
    background: var(--ds-blue-soft);
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius-sm);
    padding: .75rem;
}

.vc-compact-link-group-title {
    color: var(--ds-navy-dark);
    font-size: .83rem;
    font-weight: 900;
    letter-spacing: .04em;
    line-height: 1.25;
    margin: 0 0 .5rem;
    text-transform: uppercase;
}

.vc-compact-link-list {
    column-count: 2;
    column-gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .vc-compact-link-list li {
        break-inside: avoid;
        line-height: 1.25;
        margin-bottom: .28rem;
    }

    .vc-compact-link-list a {
        color: var(--ds-navy);
        display: inline-block;
        font-size: .82rem;
        font-weight: 700;
        line-height: 1.28;
        text-decoration: none;
    }

        .vc-compact-link-list a:hover,
        .vc-compact-link-list a:focus {
            color: var(--ds-orange);
            text-decoration: none;
        }


/* ==========================================================================
   99.06 Cross Links
   ========================================================================== */

.vc-cross-links {
    margin-top: 2rem;
}

    .vc-cross-links .vc-cross-link-list,
    .vc-cross-link-list {
        column-count: 1;
    }

        .vc-cross-links a,
        .vc-cross-link-list a {
            color: var(--ds-navy);
            font-weight: 750;
            text-decoration: none;
        }

            .vc-cross-links a:hover,
            .vc-cross-links a:focus,
            .vc-cross-link-list a:hover,
            .vc-cross-link-list a:focus {
                color: var(--ds-orange);
                text-decoration: none;
            }


/* ==========================================================================
   99.07 Numbers Bar Recovery
   ========================================================================== */

.numbers-bar > div {
    border-left: 1px solid rgba(255, 255, 255, .35);
}

    .numbers-bar > div:first-child {
        border-left: 0;
    }

.counter {
    font-family: var(--ds-font-heading);
    font-size: 48px;
    letter-spacing: .06em;
    line-height: 1;
}

.counter-pair {
    align-items: center;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .counter {
        font-size: 68px;
    }
}


/* ==========================================================================
   99.08 Responsive Recovery
   ========================================================================== */

@media (max-width: 1199.98px) {
    .vc-static-link-list,
    .vc-city-link-list,
    .vc-cross-link-list {
        column-count: 3;
    }
}

@media (max-width: 991.98px) {
    .ds-footer-brand-card {
        margin-bottom: 1.75rem;
    }

    .ds-footer-social {
        justify-content: center;
    }

    .vc-static-link-list,
    .vc-city-link-list,
    .vc-cross-link-list {
        column-count: 2;
    }
}

@media (max-width: 767.98px) {
    .ds-site-footer {
        padding: 2.5rem 0 2rem;
    }

    .ds-footer-brand-card {
        max-width: 100%;
    }

    .ds-footer-heading {
        margin-top: 1.25rem;
    }

    .vc-static-link-list,
    .vc-city-link-list,
    .vc-cross-link-list,
    .vc-compact-link-list {
        column-count: 1;
    }
}

@media (max-width: 575.98px) {
    .numbers-bar > div {
        border-left: 0;
    }
}


/* ==========================================================================
   Sitter Application Page
   ==========================================================================
   Purpose:
   - Restore the complete Sitter Application landing page styling.
   - Own the sitter hero, opportunity sections, testimonial carousel, gallery,
     FAQ accordion, final CTA, and sitter application modal compatibility.
   - Keep this section page-scoped under .ds-sitter-page where possible.
   ========================================================================== */


/* ==========================================================================
   Sitter Application - Page Shell
   ========================================================================== */

.ds-sitter-page {
    background: var(--ds-white);
}

.no-webp-support .bg-sitter-application {
    background-image: url("/Content/images/sitter-application-header-bg.jpg");
}

.webp-support .bg-sitter-application {
    background-image: url("/Content/images/sitter-application-header-bg.webp");
}


/* ==========================================================================
   Sitter Application - Hero
   ========================================================================== */

.ds-sitter-hero {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    background-color: var(--ds-navy-dark);
    background-position: center center;
    background-size: cover;
}

    .ds-sitter-hero:before {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        width: 100%;
        height: 100%;
        content: "";
        background: linear-gradient( 90deg, rgba(0, 45, 114, .94) 0%, rgba(0, 56, 141, .78) 52%, rgba(0, 0, 0, .34) 100% );
    }

    .ds-sitter-hero .container {
        position: relative;
        z-index: 1;
    }

.ds-sitter-hero-content {
    padding: 5rem 0;
}

.ds-sitter-hero-kicker {
    display: inline-block;
    margin-bottom: .8rem;
    color: var(--ds-gold);
    font-size: .85rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.25;
    text-transform: uppercase;
}

.ds-sitter-hero h1 {
    max-width: 760px;
    margin-bottom: 1rem;
    color: var(--ds-white) !important;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.12;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

.ds-sitter-hero-text {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--ds-white);
    font-size: 1.14rem;
    font-weight: 500;
    line-height: 1.7;
}

.ds-sitter-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.5rem;
}

    .ds-sitter-hero-actions .btn {
        flex: 0 0 auto;
    }

.ds-sitter-hero-trust {
    display: flex;
    align-items: center;
    max-width: 720px;
    margin-top: 1.75rem;
    padding: 1rem 1.15rem;
    color: var(--ds-white);
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 20px;
}

.ds-sitter-stars {
    display: inline-block;
    width: 142px;
    max-width: 142px;
    height: auto;
}

.ds-sitter-quote {
    margin: 0 0 0 1rem;
    color: var(--ds-white);
    font-style: italic;
    font-weight: 500;
    line-height: 1.55;
}

    .ds-sitter-quote strong {
        color: var(--ds-white);
        font-weight: 900;
    }

.ds-sitter-hero-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

    .ds-sitter-hero-card h2 {
        margin-bottom: .75rem;
        color: var(--ds-ink);
        font-size: 1.35rem;
        font-weight: 900;
        line-height: 1.25;
    }


/* ==========================================================================
   Sitter Application - Process Cards
   ========================================================================== */

.ds-sitter-process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: .9rem;
    color: var(--ds-white);
    background: var(--ds-orange);
    border-radius: 50%;
    font-weight: 900;
    line-height: 1;
}


/* ==========================================================================
   Sitter Application - Split Content Images
   ========================================================================== */

.ds-sitter-photo-card {
    padding: .85rem;
    background: var(--ds-white);
    border: 1px solid var(--ds-border);
    border-radius: 26px;
    box-shadow: var(--ds-shadow);
}

    .ds-sitter-photo-card picture {
        display: block;
    }

    .ds-sitter-photo-card img,
    .ds-sitter-split-image {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 20px;
    }

.ds-sitter-split-image {
    box-shadow: 0 16px 38px rgba(17, 31, 52, .14);
    object-fit: cover;
}


/* ==========================================================================
   Sitter Application - Benefits / Feature Cards
   ========================================================================== */

.ds-sitter-page .ds-feature-card {
    position: relative;
}

    .ds-sitter-page .ds-feature-card .ds-icon-circle {
        margin-bottom: .85rem;
    }


/* ==========================================================================
   Sitter Application - Testimonials Carousel
   ========================================================================== */

.ds-sitter-carousel-panel {
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
    padding: 2rem;
    background: var(--ds-white);
    border: 1px solid var(--ds-border);
    border-radius: 26px;
    box-shadow: var(--ds-shadow);
}

.ds-sitter-carousel {
    text-align: center;
}

    .ds-sitter-carousel .top-row {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ds-sitter-carousel .btn-left,
    .ds-sitter-carousel .btn-right {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        margin: .5rem;
        color: var(--ds-navy);
        background: var(--ds-blue-soft);
        border: 1px solid var(--ds-border);
        border-radius: 50%;
        cursor: pointer;
        font-size: 1.25rem;
        line-height: 1;
        text-decoration: none;
        transition: background-color .18s ease, color .18s ease, transform .18s ease;
    }

        .ds-sitter-carousel .btn-left:before {
            content: "\f104";
            font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
            font-weight: 900;
        }

        .ds-sitter-carousel .btn-right:before {
            content: "\f105";
            font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
            font-weight: 900;
        }

        .ds-sitter-carousel .btn-left:hover,
        .ds-sitter-carousel .btn-left:focus,
        .ds-sitter-carousel .btn-right:hover,
        .ds-sitter-carousel .btn-right:focus {
            color: var(--ds-white);
            background: var(--ds-navy);
            text-decoration: none;
            transform: translateY(-2px);
        }

    .ds-sitter-carousel .picture-and-name {
        padding: 0 1.25rem;
        text-align: center;
    }

        .ds-sitter-carousel .picture-and-name picture {
            display: inline-block;
        }

    .ds-sitter-carousel [data-field="image"] {
        display: block;
        width: 150px;
        height: 150px;
        border: 5px solid var(--ds-blue-soft);
        border-radius: 50%;
        box-shadow: 0 10px 28px rgba(17, 31, 52, .12);
        object-fit: cover;
    }

    .ds-sitter-carousel [data-field="name"] {
        margin-top: .9rem;
        color: var(--ds-ink);
        font-size: 1.25rem;
        font-weight: 900;
        line-height: 1.25;
    }

    .ds-sitter-carousel [data-field="quote"] {
        position: relative;
        max-width: 760px;
        margin: 1.5rem auto 0;
        padding: 0 1rem;
        color: var(--ds-text);
        font-size: 1.06rem;
        font-style: italic;
        font-weight: 500;
        line-height: 1.7;
        text-align: center;
    }

    .ds-sitter-carousel [data-field="image"],
    .ds-sitter-carousel [data-field="name"],
    .ds-sitter-carousel [data-field="quote"] {
        transition: opacity linear 500ms;
    }

    .ds-sitter-carousel.phase-changing [data-field="image"],
    .ds-sitter-carousel.phase-changing [data-field="name"],
    .ds-sitter-carousel.phase-changing [data-field="quote"] {
        opacity: 0;
    }


/* ==========================================================================
   Sitter Application - Field Gallery
   ========================================================================== */

.ds-sitter-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

    .ds-sitter-gallery-grid picture {
        display: block;
        overflow: hidden;
        border-radius: 18px;
    }

    .ds-sitter-gallery-grid img {
        display: block;
        width: 100%;
        height: 220px;
        border-radius: 18px;
        box-shadow: 0 8px 22px rgba(17, 31, 52, .10);
        object-fit: cover;
        object-position: center center;
    }


/* ==========================================================================
   Sitter Application - FAQ Accordion
   ========================================================================== */

.ds-sitter-faq-card {
    margin-bottom: .85rem;
    overflow: hidden;
    background: var(--ds-white);
    border: 1px solid var(--ds-border);
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(17, 31, 52, .06);
}

.ds-sitter-faq-header a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    color: var(--ds-ink);
    font-weight: 900;
    line-height: 1.35;
    text-decoration: none;
}

    .ds-sitter-faq-header a:hover,
    .ds-sitter-faq-header a:focus {
        color: var(--ds-navy);
        background: var(--ds-blue-soft);
        text-decoration: none;
    }

.ds-sitter-faq-header .fa-chevron-down {
    flex: 0 0 auto;
    color: var(--ds-navy);
    font-size: .9rem;
    transition: transform .18s ease;
}

.ds-sitter-faq-header a[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

.ds-sitter-faq-body {
    padding: 1rem 1.15rem;
    color: var(--ds-text);
    border-top: 1px solid var(--ds-border);
    line-height: 1.65;
}

    .ds-sitter-faq-body p:last-child {
        margin-bottom: 0;
    }


/* ==========================================================================
   Sitter Application - Final CTA
   ========================================================================== */

.ds-sitter-final-cta {
    padding: 2rem;
    color: var(--ds-white);
    background: linear-gradient(135deg, var(--ds-navy-dark) 0%, var(--ds-navy) 100%);
    border-radius: 26px;
    box-shadow: var(--ds-shadow-medium);
    text-align: center;
}

    .ds-sitter-final-cta h2,
    .ds-sitter-final-cta h3,
    .ds-sitter-final-cta p {
        color: var(--ds-white);
    }

    .ds-sitter-final-cta h2,
    .ds-sitter-final-cta h3 {
        margin-bottom: .65rem;
        font-weight: 900;
        line-height: 1.25;
    }

    .ds-sitter-final-cta p {
        max-width: 900px;
        margin-right: auto;
        margin-left: auto;
        line-height: 1.65;
    }

    .ds-sitter-final-cta .btn {
        margin-top: .25rem;
    }

    .ds-sitter-final-cta .ds-sitter-stars {
        margin-top: 1rem;
        margin-bottom: .65rem;
    }


/* ==========================================================================
   Sitter Application - Modal Compatibility
   ========================================================================== */

.ds-sitter-application-modal .modal-dialog {
    max-width: 1140px;
}

.ds-sitter-application-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: .3rem;
    box-shadow: var(--ds-shadow-medium);
}

.ds-sitter-application-modal .ds-sitter-form-state {
    display: block;
}

.ds-sitter-application-modal .ds-sitter-thankyou-state {
    display: none;
}

.ds-sitter-application-modal.thank-you .ds-sitter-form-state {
    display: none;
}

.ds-sitter-application-modal.thank-you .ds-sitter-thankyou-state {
    display: block;
}

.ds-sitter-application-modal .modal-header {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--ds-white);
    background: var(--ds-navy-dark);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.ds-sitter-application-modal .modal-title {
    margin-bottom: 0;
    color: var(--ds-white);
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.35;
}

.ds-sitter-application-modal .close {
    color: var(--ds-white);
    opacity: .9;
    text-shadow: none;
}

    .ds-sitter-application-modal .close:hover,
    .ds-sitter-application-modal .close:focus {
        color: var(--ds-white);
        opacity: 1;
    }

.ds-sitter-application-modal .modal-body {
    padding: 1.35rem 1.5rem;
    overflow-x: hidden;
    background: var(--ds-white);
}

.ds-sitter-application-modal .modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .5rem;
    padding: .9rem 1.5rem;
    background: var(--ds-white);
    border-top: 1px solid #dee2e6;
}

.ds-sitter-application-modal .ds-form-fields-body {
    width: 100%;
    max-width: none;
    padding: 0;
    overflow: visible;
}

.ds-sitter-application-modal .form-row {
    margin-right: -5px;
    margin-left: -5px;
}

    .ds-sitter-application-modal .form-row > .col,
    .ds-sitter-application-modal .form-row > [class*="col-"] {
        padding-right: 5px;
        padding-left: 5px;
        margin-bottom: .8rem;
    }

.ds-sitter-application-modal .ds-modal-form-intro {
    margin-bottom: 1rem;
    color: var(--ds-text);
    font-size: .92rem;
    line-height: 1.55;
}

.ds-sitter-application-modal .ds-form-label {
    margin-bottom: .25rem;
    color: var(--ds-navy-dark);
    font-size: .875rem;
    font-weight: 700;
    line-height: 1.35;
}

.ds-sitter-application-modal .form-control,
.ds-sitter-application-modal .form-control-sm {
    border-color: #ced4da;
    font-size: .875rem;
}

.ds-sitter-application-modal .form-control-sm {
    min-height: calc(1.5em + .5rem + 2px);
}

.ds-sitter-application-modal textarea.form-control-sm {
    min-height: 76px;
}

.ds-sitter-application-modal .btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ds-sitter-application-modal .ds-form-section-title {
    margin: .6rem 0 .8rem 0;
    padding-bottom: .45rem;
    color: var(--ds-navy-dark);
    border-bottom: 1px solid #dee2e6;
    font-size: 1rem;
    font-weight: 900;
}

.ds-sitter-application-modal .ds-form-alert {
    font-size: .875rem;
    line-height: 1.5;
}

.ds-sitter-application-modal .ds-checkbox-panel {
    height: auto;
    min-height: calc(1.5em + .5rem + 2px);
    padding: .5rem .75rem;
    line-height: 1.45;
}

    .ds-sitter-application-modal .ds-checkbox-panel .form-check {
        margin-bottom: .25rem;
    }

.ds-sitter-application-modal .ds-capabilities-panel {
    max-height: 240px;
    overflow-y: auto;
}

.ds-sitter-application-modal .table-responsive {
    background: var(--ds-white);
    border: 1px solid #dee2e6;
    border-radius: .25rem;
}

.ds-sitter-application-modal .table,
.ds-sitter-application-modal .table-sm {
    margin-bottom: 0;
    font-size: .875rem;
}

    .ds-sitter-application-modal .table th {
        color: var(--ds-navy-dark);
        background: #f8f9fa;
        font-size: .8rem;
        line-height: 1.25;
        white-space: nowrap;
    }

    .ds-sitter-application-modal .table td {
        vertical-align: middle;
    }

.ds-sitter-application-modal #btn-submitting {
    display: none;
}

.ds-sitter-application-modal.is-submitting #btn-submit {
    display: none;
}

.ds-sitter-application-modal.is-submitting #btn-submitting {
    display: inline-flex;
}

.ds-sitter-application-modal.is-submitting #btn-cancel {
    display: none;
}

.ds-sitter-thankyou-state .modal-body {
    padding: 2.75rem 1.5rem;
    background: var(--ds-white);
    text-align: center;
}

.ds-sitter-thankyou-state h3 {
    margin-top: 1rem;
    color: var(--ds-navy-dark);
    font-weight: 900;
}

.ds-sitter-thankyou-state h5 {
    color: var(--ds-text);
    line-height: 1.6;
}

.ds-sitter-application-modal .ds-modal-logo {
    width: auto;
    max-width: 150px;
    height: auto;
}


/* ==========================================================================
   Sitter Application - Responsive
   ========================================================================== */

@media (max-width: 991.98px) {
    .ds-sitter-hero {
        min-height: auto;
    }

    .ds-sitter-hero-content {
        padding: 4rem 0;
    }

    .ds-sitter-hero h1 {
        font-size: 2.35rem;
    }

    .ds-sitter-hero-card {
        margin-top: 2rem;
    }

    .ds-sitter-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

        .ds-sitter-gallery-grid img {
            height: 240px;
        }

    .ds-sitter-application-modal .modal-dialog {
        width: calc(100% - 1rem);
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .ds-sitter-hero-content {
        padding: 3rem 0;
    }

    .ds-sitter-hero h1 {
        font-size: 2rem;
    }

    .ds-sitter-hero-actions {
        display: block;
    }

        .ds-sitter-hero-actions .btn {
            display: flex;
            width: 100%;
            margin-bottom: .55rem;
        }

            .ds-sitter-hero-actions .btn:last-child {
                margin-bottom: 0;
            }

    .ds-sitter-hero-trust {
        display: block;
        align-items: flex-start;
    }

    .ds-sitter-quote {
        margin: .75rem 0 0;
    }

    .ds-sitter-carousel-panel,
    .ds-sitter-application-card,
    .ds-sitter-photo-card,
    .ds-sitter-hero-card,
    .ds-sitter-split-image,
    .ds-sitter-final-cta {
        border-radius: 18px;
    }

    .ds-sitter-carousel-panel {
        padding: 1.25rem;
    }

    .ds-sitter-carousel .btn-left,
    .ds-sitter-carousel .btn-right {
        width: 40px;
        height: 40px;
        margin: .25rem;
    }

    .ds-sitter-carousel .picture-and-name {
        padding: 0 .65rem;
    }

    .ds-sitter-carousel [data-field="image"] {
        width: 120px;
        height: 120px;
    }

    .ds-sitter-gallery-grid {
        grid-template-columns: 1fr;
    }

        .ds-sitter-gallery-grid img {
            height: 260px;
        }

    .ds-sitter-application-modal .modal-dialog {
        max-height: calc(100vh - 1rem);
        margin: .5rem auto;
    }

    .ds-sitter-application-modal .modal-content,
    .ds-sitter-application-modal .ds-sitter-form-state,
    .ds-sitter-application-modal .ds-sitter-application-form,
    .ds-sitter-application-modal #sitter-form {
        max-height: calc(100vh - 1rem);
    }

    .ds-sitter-application-modal .modal-footer {
        align-items: stretch;
        flex-direction: column;
    }

        .ds-sitter-application-modal .modal-footer .btn {
            width: 100%;
        }
}

@media (max-width: 575.98px) {
    .ds-sitter-gallery-grid img {
        height: 220px;
    }

    .ds-sitter-final-cta {
        padding: 1.5rem;
    }
}


/* ==========================================================================
   Numbers Bar / Service Statistics
   ==========================================================================
   Purpose:
   - Restore the styled Destination Sitters statistics band used on the
     Babysitters hub and other public pages.
   - Supports markup using:
       .ds-numbers-section
       .ds-numbers-panel
       .numbers-bar
       .ds-number-item
       .ds-number-value
       .counter
       .ds-number-suffix
       .ds-number-label
   ========================================================================== */


/* ==========================================================================
   Numbers Bar - Section Shell
   ========================================================================== */

.ds-numbers-section {
    padding: 4rem 0;
    background: var(--ds-white);
}

    .ds-numbers-section .container {
        position: relative;
        z-index: 1;
    }


/* ==========================================================================
   Numbers Bar - Main Panel
   ========================================================================== */

.ds-numbers-panel {
    overflow: hidden;
    margin: 0 auto;
    padding: 1.65rem 1.25rem;
    color: var(--ds-white);
    background: linear-gradient(135deg, var(--ds-navy-dark) 0%, var(--ds-navy) 100%);
    border-radius: var(--ds-radius-lg);
    box-shadow: var(--ds-shadow-medium);
}

    .ds-numbers-panel .row {
        align-items: stretch;
    }


/* ==========================================================================
   Numbers Bar - Column Dividers
   ========================================================================== */

.numbers-bar > div {
    display: flex;
    align-items: stretch;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, .28);
}

    .numbers-bar > div:first-child {
        border-left: 0;
    }


/* ==========================================================================
   Numbers Bar - Individual Items
   ========================================================================== */

.ds-number-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 92px;
    width: 100%;
    padding: .5rem 1rem;
    text-align: center;
}

.ds-number-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: .35rem;
    color: var(--ds-white);
    font-family: var(--ds-font-heading);
    font-weight: 900;
    letter-spacing: .02em;
    line-height: 1;
}

    .ds-number-value .counter,
    .counter {
        display: inline-block;
        color: var(--ds-white);
        font-family: var(--ds-font-heading);
        font-size: 3.25rem;
        font-weight: 900;
        letter-spacing: .02em;
        line-height: 1;
    }

.ds-number-suffix {
    display: inline-block;
    margin-left: .08rem;
    color: var(--ds-white);
    font-family: var(--ds-font-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.ds-number-label {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: .82rem;
    font-weight: 850;
    letter-spacing: .08em;
    line-height: 1.25;
    text-transform: uppercase;
}


/* ==========================================================================
   Numbers Bar - Legacy Compatibility
   ==========================================================================
   Some older pages used .counter-pair and .counter directly without the newer
   ds-number wrapper. Keep those safe inside the numbers bar only.
   ========================================================================== */

.numbers-bar .counter-pair {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.numbers-bar .counter {
    color: var(--ds-white);
}


/* ==========================================================================
   Numbers Bar - Responsive
   ========================================================================== */

@media (max-width: 991.98px) {
    .ds-numbers-panel {
        padding: 1.35rem 1rem;
    }

    .numbers-bar > div:nth-child(3) {
        border-left: 0;
    }

    .numbers-bar > div:nth-child(1),
    .numbers-bar > div:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, .22);
        padding-bottom: 1rem;
    }

    .numbers-bar > div:nth-child(3),
    .numbers-bar > div:nth-child(4) {
        padding-top: 1rem;
    }

    .ds-number-value .counter,
    .counter {
        font-size: 2.75rem;
    }

    .ds-number-suffix {
        font-size: 1.75rem;
    }
}

@media (max-width: 575.98px) {
    .ds-numbers-panel {
        border-radius: var(--ds-radius-md);
        padding: 1.1rem .9rem;
    }

    .numbers-bar > div {
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .22);
        padding-top: .85rem;
        padding-bottom: .85rem;
    }

        .numbers-bar > div:first-child {
            padding-top: 0;
        }

        .numbers-bar > div:last-child {
            border-bottom: 0;
            padding-bottom: 0;
        }

    .ds-number-item {
        min-height: 78px;
    }

    .ds-number-value .counter,
    .counter {
        font-size: 2.5rem;
    }

    .ds-number-suffix {
        font-size: 1.55rem;
    }

    .ds-number-label {
        font-size: .78rem;
    }
}


/* ==========================================================================
   Sitemap Page
   ==========================================================================
   Purpose:
   - Restore the human-readable /sitemap/ page styling.
   - Style company/service cards, active real markets, virtual city/state/region
     link groups, and the final help CTA.
   - Keep styling scoped to .ds-sitemap-page so it does not damage city pages,
     support pages, or regular static city-link partials.
   ========================================================================== */


/* ==========================================================================
   Sitemap - Page Shell
   ========================================================================== */

.ds-sitemap-page {
    background: var(--ds-white);
}

    .ds-sitemap-page .ds-section {
        position: relative;
    }

    .ds-sitemap-page .ds-bg-soft-blue {
        background: linear-gradient(180deg, var(--ds-blue-soft) 0%, var(--ds-blue-soft-2) 100%);
    }

    .ds-sitemap-page .ds-bg-gray {
        background: #F6F7F9;
    }

    .ds-sitemap-page .ds-section-title {
        margin-bottom: .75rem;
    }

    .ds-sitemap-page .ds-section-lead {
        max-width: 880px;
        font-size: .98rem;
        line-height: 1.65;
    }

        .ds-sitemap-page .ds-section-lead a {
            color: var(--ds-navy);
            font-weight: 800;
            text-decoration: none;
        }

            .ds-sitemap-page .ds-section-lead a:hover,
            .ds-sitemap-page .ds-section-lead a:focus {
                color: var(--ds-orange);
                text-decoration: none;
            }


/* ==========================================================================
   Sitemap - Cards
   ========================================================================== */

.ds-sitemap-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: .95rem;
    align-items: flex-start;
    min-height: 118px;
    padding: 1.15rem;
    color: var(--ds-text);
    background: var(--ds-white);
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius-lg);
    box-shadow: var(--ds-shadow-soft);
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}

    .ds-sitemap-card:hover,
    .ds-sitemap-card:focus {
        color: var(--ds-text);
        background: var(--ds-blue-soft);
        border-color: rgba(0, 56, 141, .18);
        box-shadow: var(--ds-shadow);
        text-decoration: none;
        transform: translateY(-3px);
    }

    .ds-sitemap-card .ds-icon-circle {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        margin: 0;
        color: var(--ds-navy);
        background: rgba(0, 56, 141, .10);
        font-size: 1.1rem;
        transition: background-color .18s ease, color .18s ease;
    }

    .ds-sitemap-card:hover .ds-icon-circle,
    .ds-sitemap-card:focus .ds-icon-circle {
        color: var(--ds-white);
        background: var(--ds-orange);
    }

    .ds-sitemap-card .ds-card-title {
        margin-bottom: .35rem;
        color: var(--ds-ink);
        font-size: .98rem;
        font-weight: 900;
        line-height: 1.25;
    }

    .ds-sitemap-card .ds-card-text {
        margin-bottom: 0;
        color: var(--ds-text);
        font-size: .88rem;
        font-weight: 500;
        line-height: 1.5;
    }


/* ==========================================================================
   Sitemap - Active Real Markets Panel
   ==========================================================================
   This section contains the legacy Helpers.EvenColumns location output.
   The helper may render simple headings/ul/li/a markup, so scope clean
   typography and columns under the sitemap page.
   ========================================================================== */

.ds-sitemap-page #active-hotel-babysitting-pet-sitting-markets,
.ds-sitemap-page .ds-sitemap-locations-panel {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
}

.ds-sitemap-locations-panel {
    padding: 1.75rem;
    background: var(--ds-white);
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius-xl);
    box-shadow: var(--ds-shadow);
}

    .ds-sitemap-locations-panel h2,
    .ds-sitemap-locations-panel h3,
    .ds-sitemap-locations-panel h4,
    .ds-sitemap-locations-panel h5,
    .ds-sitemap-locations-panel strong,
    .ds-sitemap-locations-panel .font-weight-bold {
        color: var(--ds-ink);
        font-weight: 900;
    }

    .ds-sitemap-locations-panel h3,
    .ds-sitemap-locations-panel h4,
    .ds-sitemap-locations-panel h5 {
        margin-top: .85rem;
        margin-bottom: .35rem;
        font-size: 1rem;
        line-height: 1.25;
    }

    .ds-sitemap-locations-panel ul {
        margin-bottom: .75rem;
        padding-left: 1.1rem;
    }

    .ds-sitemap-locations-panel li {
        margin-bottom: .18rem;
        color: var(--ds-text);
        font-size: .9rem;
        line-height: 1.35;
    }

    .ds-sitemap-locations-panel a {
        color: var(--ds-navy);
        font-size: .9rem;
        font-weight: 750;
        line-height: 1.35;
        text-decoration: none;
    }

        .ds-sitemap-locations-panel a:hover,
        .ds-sitemap-locations-panel a:focus {
            color: var(--ds-orange);
            text-decoration: none;
        }


/* ==========================================================================
   Sitemap - Static City Link Sections
   ==========================================================================
   The sitemap intentionally displays several static city-link sections:
   - Hotel Babysitting service markets
   - Wedding Childcare cities/service areas
   - Event Childcare cities/service areas

   The generic partial can look too raw on this page unless it is scoped.
   ========================================================================== */

.ds-sitemap-page .vc-static-city-links,
.ds-sitemap-page .vc-static-city-links-section,
.ds-sitemap-page .vc-city-links-section,
.ds-sitemap-page .vc-cross-links-section {
    margin: 0;
    padding: 0;
}

.ds-sitemap-page .vc-static-city-links-inner,
.ds-sitemap-page .vc-city-links-inner,
.ds-sitemap-page .vc-cross-links-inner {
    width: 100%;
    max-width: none;
    margin: 0;
}

.ds-sitemap-page .vc-static-city-links-heading,
.ds-sitemap-page .vc-city-links-heading,
.ds-sitemap-page .vc-cross-links-heading {
    margin: 0 0 .45rem;
    color: var(--ds-ink);
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.25;
}

.ds-sitemap-page .vc-static-city-links-intro,
.ds-sitemap-page .vc-city-links-intro,
.ds-sitemap-page .vc-cross-links-intro {
    max-width: 980px;
    margin: 0 0 1.1rem;
    color: var(--ds-text);
    font-size: .92rem;
    line-height: 1.58;
}

.ds-sitemap-page .vc-static-link-group,
.ds-sitemap-page .vc-city-link-group,
.ds-sitemap-page .vc-cross-link-group {
    margin: 0 0 1.25rem;
    padding: 0;
}

    .ds-sitemap-page .vc-static-link-group:last-child,
    .ds-sitemap-page .vc-city-link-group:last-child,
    .ds-sitemap-page .vc-cross-link-group:last-child {
        margin-bottom: 0;
    }

.ds-sitemap-page .vc-static-link-group-title,
.ds-sitemap-page .vc-city-link-group-title,
.ds-sitemap-page .vc-cross-link-group-title {
    margin: 0 0 .45rem;
    color: var(--ds-ink);
    font-size: .95rem;
    font-weight: 900;
    line-height: 1.25;
}

.ds-sitemap-page .vc-static-link-list,
.ds-sitemap-page .vc-city-link-list,
.ds-sitemap-page .vc-cross-link-list {
    column-count: 4;
    column-gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .ds-sitemap-page .vc-static-link-list li,
    .ds-sitemap-page .vc-city-link-list li,
    .ds-sitemap-page .vc-cross-link-list li {
        break-inside: avoid;
        margin: 0 0 .32rem;
        padding: 0;
        line-height: 1.32;
    }

    .ds-sitemap-page .vc-static-link-list a,
    .ds-sitemap-page .vc-city-link-list a,
    .ds-sitemap-page .vc-cross-link-list a,
    .ds-sitemap-page .vc-cross-links a {
        display: inline-block;
        color: var(--ds-navy);
        font-size: .86rem;
        font-weight: 700;
        line-height: 1.32;
        text-decoration: none;
    }

        .ds-sitemap-page .vc-static-link-list a:hover,
        .ds-sitemap-page .vc-static-link-list a:focus,
        .ds-sitemap-page .vc-city-link-list a:hover,
        .ds-sitemap-page .vc-city-link-list a:focus,
        .ds-sitemap-page .vc-cross-link-list a:hover,
        .ds-sitemap-page .vc-cross-link-list a:focus,
        .ds-sitemap-page .vc-cross-links a:hover,
        .ds-sitemap-page .vc-cross-links a:focus {
            color: var(--ds-orange);
            text-decoration: none;
        }


/* ==========================================================================
   Sitemap - Static Link Containers
   ========================================================================== */

.ds-sitemap-page .ds-sitemap-static-links-wrap,
.ds-sitemap-page .ds-sitemap-links-panel,
.ds-sitemap-page .vc-static-city-links {
    width: 100%;
}

.ds-sitemap-page .ds-sitemap-links-panel {
    padding: 1.75rem;
    background: var(--ds-white);
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius-xl);
    box-shadow: var(--ds-shadow-soft);
}


/* ==========================================================================
   Sitemap - Final CTA
   ========================================================================== */

.ds-sitemap-page .ds-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
    padding: 1.5rem 1.75rem;
    color: var(--ds-white);
    background: linear-gradient(135deg, var(--ds-navy-dark) 0%, var(--ds-navy) 100%);
    border-radius: var(--ds-radius-xl);
    box-shadow: var(--ds-shadow-medium);
}

    .ds-sitemap-page .ds-cta-panel h2,
    .ds-sitemap-page .ds-cta-panel h3,
    .ds-sitemap-page .ds-cta-panel p {
        color: var(--ds-white);
    }

    .ds-sitemap-page .ds-cta-panel h2,
    .ds-sitemap-page .ds-cta-panel h3 {
        margin-bottom: .35rem;
        font-size: 1.35rem;
        font-weight: 900;
        line-height: 1.25;
    }

    .ds-sitemap-page .ds-cta-panel p {
        margin-bottom: 0;
        font-size: .95rem;
        line-height: 1.55;
    }

    .ds-sitemap-page .ds-cta-panel .btn {
        flex: 0 0 auto;
    }


/* ==========================================================================
   Sitemap - Link Reset Against Legacy Global Anchors
   ========================================================================== */

.ds-sitemap-page a {
    text-decoration: none;
}

    .ds-sitemap-page a:hover,
    .ds-sitemap-page a:focus {
        text-decoration: none;
    }


/* ==========================================================================
   Sitemap - Responsive
   ========================================================================== */

@media (max-width: 1199.98px) {
    .ds-sitemap-page .vc-static-link-list,
    .ds-sitemap-page .vc-city-link-list,
    .ds-sitemap-page .vc-cross-link-list {
        column-count: 3;
    }
}

@media (max-width: 991.98px) {
    .ds-sitemap-card {
        min-height: 112px;
    }

    .ds-sitemap-page .vc-static-link-list,
    .ds-sitemap-page .vc-city-link-list,
    .ds-sitemap-page .vc-cross-link-list {
        column-count: 2;
    }

    .ds-sitemap-page .ds-cta-panel {
        display: block;
        text-align: center;
    }

        .ds-sitemap-page .ds-cta-panel .btn {
            margin-top: 1rem;
        }
}

@media (max-width: 767.98px) {
    .ds-sitemap-card {
        grid-template-columns: 42px 1fr;
        gap: .8rem;
        min-height: auto;
        padding: 1rem;
        border-radius: var(--ds-radius-md);
    }

        .ds-sitemap-card .ds-icon-circle {
            width: 42px;
            height: 42px;
            font-size: 1rem;
        }

    .ds-sitemap-locations-panel,
    .ds-sitemap-page .ds-sitemap-links-panel {
        padding: 1.15rem;
        border-radius: var(--ds-radius-lg);
    }

    .ds-sitemap-page .vc-static-link-list,
    .ds-sitemap-page .vc-city-link-list,
    .ds-sitemap-page .vc-cross-link-list {
        column-count: 1;
    }

    .ds-sitemap-page .vc-static-city-links-heading,
    .ds-sitemap-page .vc-city-links-heading,
    .ds-sitemap-page .vc-cross-links-heading {
        font-size: 1.18rem;
    }

    .ds-sitemap-page .ds-cta-panel {
        padding: 1.35rem;
        border-radius: var(--ds-radius-lg);
    }
}

@media (max-width: 575.98px) {
    .ds-sitemap-card {
        display: block;
        text-align: left;
    }

        .ds-sitemap-card .ds-icon-circle {
            margin-bottom: .75rem;
        }
}