/* =========================================================
   Cleaning Services by WebXPro.pk — Frontend Styles v1.2
   Premium UI — White background, #0163d2 primary, Jost font
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

:root {
    --cs-primary:       #0163d2;
    --cs-primary-hover: #004fb0;
    --cs-heading:       #0a0a0a;
    --cs-text:          #4b5563;
    --cs-border:        #e8ecf0;
    --cs-bg:            #ffffff;
    --cs-bg-soft:       #f8fafc;
    --cs-radius:        12px;
    --cs-font:          'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --cs-shadow-sm:     0 2px 8px rgba(0,0,0,.06);
    --cs-shadow:        0 6px 28px rgba(0,0,0,.09);
    --cs-shadow-hover:  0 16px 44px rgba(0,0,0,.14);
    --cs-transition:    .3s ease;
}

*, *::before, *::after { box-sizing: border-box; }

/* =========================================================
   CONTAINER
   ========================================================= */
.cs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* =========================================================
   SERVICES GRID
   ========================================================= */
.cs-services-grid {
    display: grid;
    gap: 28px;
}

.cs-cols-1 { grid-template-columns: 1fr; }
.cs-cols-2 { grid-template-columns: repeat(2, 1fr); }
.cs-cols-3 { grid-template-columns: repeat(3, 1fr); }
.cs-cols-4 { grid-template-columns: repeat(4, 1fr); }
.cs-cols-5 { grid-template-columns: repeat(5, 1fr); }
.cs-cols-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 1024px) {
    .cs-cols-4, .cs-cols-5, .cs-cols-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .cs-cols-3, .cs-cols-4, .cs-cols-5, .cs-cols-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .cs-cols-2, .cs-cols-3, .cs-cols-4, .cs-cols-5, .cs-cols-6 { grid-template-columns: 1fr; }
}

/* =========================================================
   SERVICE CARD — eCommerce style
   ========================================================= */
.cs-service-card {
    background: var(--cs-bg);
    border: 1px solid var(--cs-border);
    border-radius: var(--cs-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--cs-transition), box-shadow var(--cs-transition), border-color var(--cs-transition);
    font-family: var(--cs-font);
    height: 100%;
    box-shadow: var(--cs-shadow-sm);
}

.cs-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--cs-shadow-hover);
    border-color: rgba(1,99,210,.15);
}

/* ── Card image ────────────────────────────────────────── */
.cs-card-thumb-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    position: relative;
    background: #f0f4f8;
}

.cs-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}

/* Image zoom on hover */
.cs-service-card:hover .cs-card-img { transform: scale(1.08); }

.cs-card-no-img {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5d1db;
}
.cs-card-no-img .dashicons { font-size: 44px; width: 44px; height: 44px; }

/* Featured / Popular badges */
.cs-badge-featured,
.cs-badge-popular {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--cs-font);
    letter-spacing: .3px;
    pointer-events: none;
}
.cs-badge-featured { color: #fff; }
.cs-badge-popular  { background: #fff; color: var(--cs-heading); border: 1px solid var(--cs-border); }

/* ── Card body ─────────────────────────────────────────── */
.cs-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
}

.cs-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--cs-heading);
    margin: 0 0 10px;
    line-height: 1.35;
    font-family: var(--cs-font);
    letter-spacing: -.01em;
}
.cs-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}
.cs-card-title a:hover { color: var(--cs-primary); }

.cs-card-price {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: var(--cs-font);
}

.cs-card-footer {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--cs-border);
}

.cs-btn-outline,
.cs-btn-primary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--cs-font);
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background .22s, box-shadow .22s, transform .18s, border-color .22s, color .22s;
    line-height: 1.3;
    text-align: center;
    letter-spacing: .01em;
    white-space: nowrap;
}

.cs-btn-outline {
    background: transparent;
    border: 1.5px solid var(--cs-border);
    color: var(--cs-heading) !important;
}
.cs-btn-outline:hover {
    border-color: var(--cs-primary) !important;
    color: var(--cs-primary) !important;
    background: rgba(1,99,210,.04) !important;
}

/* Book Now — full width, primary colour, animated */
.cs-btn-primary {
    background: var(--cs-primary);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(1,99,210,.22);
}
.cs-btn-primary:hover {
    background: var(--cs-primary-hover) !important;
    box-shadow: 0 6px 22px rgba(1,99,210,.36);
    transform: translateY(-2px);
    color: #fff !important;
}

/* =========================================================
   SINGLE SERVICE PAGE
   ========================================================= */
.cs-single-page {
    font-family: var(--cs-font);
    color: var(--cs-text);
}

/* ── Breadcrumb ─────────────────────────────────────────── */
.cs-breadcrumb {
    background: var(--cs-bg-soft);
    border-bottom: 1px solid var(--cs-border);
    padding: 12px 0;
}
.cs-breadcrumb .cs-container {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--cs-text);
    flex-wrap: wrap;
}
.cs-breadcrumb a {
    color: var(--cs-text);
    text-decoration: none;
    transition: color .2s;
}
.cs-breadcrumb a:hover { color: var(--cs-primary); }
.cs-sep   { color: #bbb; }
.cs-current { color: var(--cs-heading); font-weight: 500; }

/* ── Hero section ─────────────────────────────────────────── */
.cs-service-hero { padding: 56px 0; }

.cs-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: stretch; /* equal height columns */
}

@media (max-width: 900px) {
    .cs-hero-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Image column — full height, no cropping */
.cs-hero-image {
    position: relative;
    border-radius: var(--cs-radius);
    overflow: hidden;
    box-shadow: var(--cs-shadow);
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

/* Featured image: full, uncropped, proportional */
.cs-featured-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;    /* no crop — full image visible */
    object-position: center center;
    background: #f5f7fa;
}

/* Fallback when no image uploaded */
.cs-hero-no-img {
    flex: 1;
    min-height: 320px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);
    border-radius: var(--cs-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(1,99,210,.2);
}

/* Info column */
.cs-hero-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
}

.cs-service-category-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    font-family: var(--cs-font);
}

/* Service title: clean H2/H3 style — reduced, wraps gracefully */
.cs-service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--cs-heading);
    margin: 0 0 16px;
    line-height: 1.35;
    font-family: var(--cs-font);
    letter-spacing: -.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}
@media (max-width: 768px) { .cs-service-title { font-size: 19px; } }

.cs-service-short-desc {
    font-size: 15px;
    color: var(--cs-text);
    line-height: 1.75;
    margin: 0 0 24px;
    font-family: var(--cs-font);
}

.cs-service-price { margin-bottom: 28px; }
.cs-price-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    display: block;
    margin-bottom: 6px;
    color: var(--cs-text);
    font-family: var(--cs-font);
}
.cs-price-value {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--cs-font);
    line-height: 1;
}

/* Book Now button on single service */
.cs-btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--cs-font);
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background .22s, box-shadow .22s, transform .18s;
    line-height: 1.3;
    text-align: center;
    letter-spacing: .01em;
    align-self: flex-start;
}

.cs-btn-book.cs-btn-primary {
    background: var(--cs-primary);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(1,99,210,.3);
}
.cs-btn-book.cs-btn-primary:hover {
    background: var(--cs-primary-hover) !important;
    box-shadow: 0 8px 28px rgba(1,99,210,.4);
    transform: translateY(-2px);
}

/* Sticky book bar */
.cs-sticky-book-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: #fff;
    border-top: 1px solid var(--cs-border);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.08);
    transform: translateY(100%);
    transition: transform .3s ease;
}
.cs-sticky-book-bar.visible { transform: translateY(0); }
.cs-sticky-service-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--cs-heading);
    font-family: var(--cs-font);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 260px;
}
.cs-sticky-book-btn {
    flex-shrink: 0;
    padding: 11px 24px;
    background: var(--cs-primary);
    color: #fff !important;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--cs-font);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .18s;
    white-space: nowrap;
}
.cs-sticky-book-btn:hover {
    background: var(--cs-primary-hover);
    transform: translateY(-1px);
}

/* ── Content sections ───────────────────────────────────── */
.cs-section { padding: 56px 0; }
.cs-section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--cs-heading);
    margin: 0 0 28px;
    font-family: var(--cs-font);
    line-height: 1.25;
    letter-spacing: -.01em;
}

/* ── Rich content ──────────────────────────────────────── */
.cs-rich-content {
    font-size: 15px;
    color: var(--cs-text);
    line-height: 1.8;
    font-family: var(--cs-font);
}
.cs-rich-content h1,
.cs-rich-content h2,
.cs-rich-content h3,
.cs-rich-content h4 {
    color: var(--cs-heading);
    font-family: var(--cs-font);
    margin-top: 1.5em;
    margin-bottom: .5em;
}
.cs-rich-content ul,
.cs-rich-content ol { padding-left: 24px; }
.cs-rich-content li { margin-bottom: 8px; }
.cs-rich-content li::marker { color: var(--cs-primary); }
.cs-rich-content p { margin-bottom: 1em; }
.cs-rich-content strong { color: var(--cs-heading); }

/* ── Split (Why Choose + What's Included) ──────────────── */
.cs-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
@media (max-width: 768px) { .cs-split-grid { grid-template-columns: 1fr; gap: 32px; } }

.cs-split-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.cs-split-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px;
    font-family: var(--cs-font);
    letter-spacing: -.01em;
}

/* ── CTA banner ────────────────────────────────────────── */
.cs-cta-section { padding: 52px 0; }
.cs-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px;
}
.cs-cta-title { color: #fff; font-size: 22px; font-weight: 700; margin: 0 0 6px; font-family: var(--cs-font); }
.cs-cta-sub   { color: rgba(255,255,255,.85); font-size: 15px; margin: 0; font-family: var(--cs-font); }

.cs-btn-white {
    background: #fff !important;
    color: var(--cs-primary) !important;
    border-radius: 10px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: box-shadow .2s, transform .18s;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cs-btn-white:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.2);
    transform: translateY(-2px);
}

/* ── Related services ──────────────────────────────────── */
.cs-related-services { background: var(--cs-bg-soft); }

/* =========================================================
   GALLERY SLIDER
   ========================================================= */
.cs-gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--cs-radius);
    margin-bottom: 16px;
}
.cs-gallery-track { display: flex; transition: transform .35s ease; }
.cs-gallery-slide { flex: 0 0 100%; }
.cs-gallery-slide img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.cs-gallery-nav {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}
.cs-gallery-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--cs-border);
    border: none; cursor: pointer; padding: 0;
    transition: background .2s, transform .2s;
}
.cs-gallery-dot.active { background: var(--cs-primary); transform: scale(1.3); }

/* =========================================================
   SERVICES SLIDER WIDGET
   ========================================================= */
.cs-slider-wrapper { position: relative; overflow: hidden; padding: 8px 0; }
.cs-slider-track {
    display: flex;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    gap: 24px;
}
.cs-slider-track .cs-service-card { flex: 0 0 calc(33.333% - 16px); min-width: 240px; }
.cs-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--cs-border);
    box-shadow: var(--cs-shadow-sm);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background .2s, box-shadow .2s;
    color: var(--cs-heading);
}
.cs-slider-arrow:hover { background: var(--cs-primary); color: #fff; border-color: var(--cs-primary); }
.cs-slider-arrow.cs-prev { left: -20px; }
.cs-slider-arrow.cs-next { right: -20px; }
.cs-slider-dots { display: flex; gap: 6px; justify-content: center; margin-top: 18px; }
.cs-slider-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--cs-border); border: none; cursor: pointer; padding: 0;
    transition: background .2s, transform .2s;
}
.cs-slider-dot.active { background: var(--cs-primary); transform: scale(1.3); }

/* =========================================================
   CATEGORIES GRID WIDGET
   ========================================================= */
.cs-categories-grid {
    display: grid;
    gap: 24px;
}
.cs-cat-card {
    background: var(--cs-bg);
    border: 1px solid var(--cs-border);
    border-radius: var(--cs-radius);
    overflow: hidden;
    transition: transform var(--cs-transition), box-shadow var(--cs-transition), border-color var(--cs-transition);
    font-family: var(--cs-font);
    box-shadow: var(--cs-shadow-sm);
}
.cs-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--cs-shadow);
    border-color: rgba(1,99,210,.15);
}
.cs-cat-thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f0f4f8;
}
.cs-cat-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.cs-cat-card:hover .cs-cat-thumb img { transform: scale(1.07); }
.cs-cat-no-thumb {
    aspect-ratio: 16 / 9;
    display: flex; align-items: center; justify-content: center;
    color: rgba(1,99,210,.2); font-size: 44px;
}
.cs-cat-body { padding: 16px 18px 18px; }
.cs-cat-name {
    font-size: 16px; font-weight: 600;
    color: var(--cs-heading);
    margin: 0 0 8px;
    font-family: var(--cs-font);
}
.cs-cat-name a { color: inherit; text-decoration: none; }
.cs-cat-name a:hover { color: var(--cs-primary); }
.cs-cat-count {
    font-size: 12px; color: var(--cs-primary);
    font-weight: 600; margin-bottom: 8px;
    font-family: var(--cs-font);
}
.cs-cat-desc {
    font-size: 13px;
    color: var(--cs-text);
    margin: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================================================
   MISC SHARED COMPONENTS
   ========================================================= */
.cs-divider {
    border: none;
    border-top: 1px solid var(--cs-border);
    margin: 0;
}

.cs-full-desc-section { background: var(--cs-bg); }
.cs-info-section { background: var(--cs-bg-soft); }

/* No services */
.cs-no-services {
    padding: 24px;
    text-align: center;
    color: var(--cs-text);
    font-family: var(--cs-font);
    font-size: 15px;
}

/* =========================================================
   CS ORDERS SHORTCODE — Frontend table
   ========================================================= */
.cs-orders-wrap {
    font-family: var(--cs-font);
    margin: 0;
}

.cs-orders-export-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 20px;
    background: var(--cs-bg-soft);
    border: 1px solid var(--cs-border);
    border-radius: var(--cs-radius);
    padding: 16px 20px;
}

.cs-orders-filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cs-orders-filter-group label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: var(--cs-heading);
    font-family: var(--cs-font);
}

.cs-orders-filter-group select,
.cs-orders-filter-group input[type="date"] {
    height: 40px;
    padding: 0 12px;
    border: 1.5px solid var(--cs-border);
    border-radius: 8px;
    font-size: 13px;
    font-family: var(--cs-font);
    background: #fff;
    color: var(--cs-heading);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    cursor: pointer;
}
.cs-orders-filter-group select:focus,
.cs-orders-filter-group input[type="date"]:focus {
    border-color: var(--cs-primary);
    box-shadow: 0 0 0 3px rgba(1,99,210,.1);
}

.cs-orders-custom-range {
    display: none;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.cs-orders-custom-range.visible { display: flex; }
.cs-orders-custom-range span { font-size: 12px; color: var(--cs-text); }

.cs-orders-export-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 20px;
    height: 40px;
    background: var(--cs-primary);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--cs-font);
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, box-shadow .2s, transform .18s;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(1,99,210,.22);
    margin-left: auto;
}
.cs-orders-export-btn:hover {
    background: var(--cs-primary-hover);
    box-shadow: 0 6px 18px rgba(1,99,210,.3);
    transform: translateY(-1px);
}
.cs-orders-export-btn svg { flex-shrink: 0; }

.cs-orders-table-wrap {
    overflow-x: auto;
    border-radius: var(--cs-radius);
    box-shadow: var(--cs-shadow-sm);
    border: 1px solid var(--cs-border);
}

.cs-orders-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--cs-font);
    font-size: 13.5px;
    background: #fff;
}

.cs-orders-table thead th {
    background: var(--cs-primary);
    color: #fff;
    padding: 13px 16px;
    text-align: left;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
}

.cs-orders-table tbody tr {
    border-bottom: 1px solid var(--cs-border);
    transition: background .15s;
}
.cs-orders-table tbody tr:last-child { border-bottom: none; }
.cs-orders-table tbody tr:hover { background: var(--cs-bg-soft); }

.cs-orders-table tbody td {
    padding: 12px 16px;
    color: var(--cs-text);
    vertical-align: middle;
    white-space: nowrap;
}

.cs-orders-table tbody td:nth-child(2) { /* Service name */
    color: var(--cs-heading);
    font-weight: 500;
    white-space: normal;
    max-width: 200px;
}

.cs-orders-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--cs-text);
    font-size: 14px;
}

/* Status badge */
.cs-order-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2px;
    font-family: var(--cs-font);
    text-transform: capitalize;
}
.cs-status-pending   { background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa; }
.cs-status-confirmed { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.cs-status-completed { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.cs-status-cancelled { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

@media (max-width: 640px) {
    .cs-orders-export-bar { flex-direction: column; align-items: stretch; }
    .cs-orders-export-btn { width: 100%; justify-content: center; margin-left: 0; }
}

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.cs-animate-ready {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .5s ease, transform .5s ease;
}
.cs-animate-ready.cs-animate-in {
    opacity: 1;
    transform: translateY(0);
}

.cs-services-grid .cs-animate-ready:nth-child(1) { transition-delay: 0s; }
.cs-services-grid .cs-animate-ready:nth-child(2) { transition-delay: .08s; }
.cs-services-grid .cs-animate-ready:nth-child(3) { transition-delay: .16s; }
.cs-services-grid .cs-animate-ready:nth-child(4) { transition-delay: .24s; }
.cs-services-grid .cs-animate-ready:nth-child(5) { transition-delay: .32s; }
.cs-services-grid .cs-animate-ready:nth-child(6) { transition-delay: .40s; }
