/* =========================================================
   CARSTAIRS MOVERS PAGE
========================================================= */

.cs-page {
    --red: #C71111;
    --red-dark: #a40e0e;
    --navy: #071321;
    --navy-2: #102136;
    --text: #1c2633;
    --muted: #697382;
    --light: #f5f6f8;
    --border: #e4e7eb;
    --white: #fff;

    font-family: Inter, ui-sans-serif, system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", sans-serif;

    color: var(--text);
    line-height: 1.7;
    background: #fff;
    overflow: hidden;
}

.cs-page *,
.cs-page *::before,
.cs-page *::after {
    box-sizing: border-box;
}

.cs-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.cs-section {
    padding: 72px 0;
}

.cs-light {
    background: var(--light);
}

.cs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cs-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--red);
}

.cs-title {
    margin: 0 0 17px;
    color: var(--navy);
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -1.2px;
    font-weight: 800;
}

.cs-title span {
    color: var(--red);
}

.cs-text {
    margin: 0 0 17px;
    color: var(--muted);
    font-size: 16px;
}

.cs-text:last-child {
    margin-bottom: 0;
}

.cs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 51px;
    padding: 0 26px;
    border-radius: 7px;
    background: var(--red);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .3px;
    text-transform: uppercase;
    box-shadow: 0 12px 25px rgba(199,17,17,.18);
    transition: .25s ease;
}

.cs-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}


/* =========================================================
   01 — HERO TITLE SECTION
========================================================= */

.cs-hero {
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(
            90deg,
            rgba(5,15,27,.88) 0%,
            rgba(5,15,27,.68) 48%,
            rgba(5,15,27,.30) 100%
        ),
        url("/images/locations/movers-in-carstairs-ab/2149103448.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.cs-hero::after {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    right: -230px;
    bottom: -300px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
}

.cs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.cs-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.cs-hero-label::before {
    content: "";
    width: 35px;
    height: 2px;
    background: var(--red);
}

.cs-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 7vw, 82px);
    line-height: .98;
    letter-spacing: -3px;
    font-weight: 850;
}

.cs-hero-line {
    width: 72px;
    height: 4px;
    margin-top: 27px;
    border-radius: 10px;
    background: var(--red);
}


/* =========================================================
   02 — INTRO CONTENT
========================================================= */

.cs-intro {
    padding: 70px 0;
    background: #fff;
}

.cs-intro-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 55px;
    align-items: start;
}

.cs-intro-main {
    max-width: 800px;
}

.cs-intro-main p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 16px;
}

.cs-intro-main a {
    color: var(--red);
    font-weight: 700;
}

.cs-intro-main strong {
    color: var(--text);
}

.cs-intro-side {
    position: sticky;
    top: 25px;
}

.cs-contact-card {
    padding: 28px;
    border-radius: 14px;
    background: var(--navy);
    box-shadow: 0 18px 40px rgba(7,19,33,.13);
}

.cs-contact-card small {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.cs-contact-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 22px;
    line-height: 1.25;
}

.cs-contact-card p {
    margin: 0 0 20px;
    color: rgba(255,255,255,.68);
    font-size: 14px;
}


/* =========================================================
   03 — SERVICES
========================================================= */

.cs-services-head {
    max-width: 850px;
    margin-bottom: 30px;
}

.cs-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cs-service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cs-service-list li {
    position: relative;
    padding: 16px 15px 16px 45px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 9px;
    color: var(--text);
    font-size: 14px;
    font-weight: 650;
}

.cs-service-list li::before {
    content: "✓";
    position: absolute;
    left: 15px;
    top: 15px;
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.cs-service-description {
    padding: 29px;
    border-radius: 13px;
    background: var(--navy);
    color: #fff;
}

.cs-service-description h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 22px;
}

.cs-service-description p {
    margin: 0 0 21px;
    color: rgba(255,255,255,.72);
    font-size: 15px;
}

.cs-service-description a {
    color: #fff;
    text-decoration: none;
}


/* =========================================================
   04 — RELIABLE PROFESSIONALS
========================================================= */

.cs-reliable-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 55px;
    align-items: center;
}

.cs-image-wrap {
    position: relative;
}

.cs-image-wrap::after {
    content: "";
    position: absolute;
    left: -13px;
    bottom: -13px;
    width: 105px;
    height: 105px;
    border-left: 3px solid var(--red);
    border-bottom: 3px solid var(--red);
    border-radius: 0 0 0 12px;
}

.cs-image-wrap img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(15,23,42,.13);
}

.cs-reliable-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.cs-reliable-list li {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: #fff;
    color: var(--text);
    font-size: 14px;
    font-weight: 650;
}


/* =========================================================
   05 — LOCAL & LONG DISTANCE
========================================================= */

.cs-relocation {
    background: var(--navy);
    color: #fff;
}

.cs-relocation-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    align-items: center;
}

.cs-relocation .cs-title {
    color: #fff;
}

.cs-relocation .cs-text {
    color: rgba(255,255,255,.7);
}

.cs-relocation-box {
    padding: 30px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.04);
}

.cs-relocation-box h3 {
    margin: 0 0 17px;
    color: #fff;
    font-size: 23px;
}

.cs-relocation-points {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cs-relocation-points li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: rgba(255,255,255,.75);
    border-bottom: 1px solid rgba(255,255,255,.09);
    font-size: 14px;
}

.cs-relocation-points li:last-child {
    border-bottom: 0;
}

.cs-relocation-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 11px;
    color: var(--red);
    font-weight: 900;
}


/* =========================================================
   06 — CONTACT STRIP
========================================================= */

.cs-contact-strip {
    padding: 50px 0;
    background: #fff;
}

.cs-contact-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 32px 38px;
    border-radius: 14px;
    background: #f7f7f8;
    border: 1px solid var(--border);
}

.cs-contact-strip h2 {
    margin: 0;
    color: var(--navy);
    font-size: 29px;
    line-height: 1.2;
}

.cs-contact-strip h2 span {
    color: var(--red);
}


/* =========================================================
   07 — PROJECTS
========================================================= */

.cs-projects {
    background: var(--light);
}

.cs-project-head {
    margin-bottom: 30px;
}

.cs-project-head .cs-title {
    max-width: 800px;
    margin-bottom: 0;
}

.cs-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #111;
}

.cs-slides {
    display: flex;
    transition: transform .55s cubic-bezier(.22,.61,.36,1);
}

.cs-slide {
    min-width: 100%;
}

.cs-slide img {
    display: block;
    width: 100%;
    height: 580px;
    object-fit: cover;
}

.cs-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    background: rgba(0,0,0,.48);
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    backdrop-filter: blur(7px);
    transition: .25s ease;
}

.cs-arrow:hover {
    background: var(--red);
    border-color: var(--red);
}

.cs-prev {
    left: 17px;
}

.cs-next {
    right: 17px;
}

.cs-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.cs-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 20px;
    background: #c4c8ce;
    cursor: pointer;
    transition: .25s ease;
}

.cs-dot.active {
    width: 25px;
    background: var(--red);
}

.cs-project-btn {
    margin-top: 23px;
    text-align: center;
}


/* =========================================================
   08 — FINAL CTA
========================================================= */

.cs-final {
    padding: 62px 0;
    background: #fff;
}

.cs-final-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 45px;
    border-radius: 16px;
    background: linear-gradient(120deg, #071321, #102136);
    box-shadow: 0 20px 45px rgba(7,19,33,.13);
}

.cs-final h2 {
    max-width: 730px;
    margin: 0;
    color: #fff;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
}

.cs-final h2 span {
    color: var(--red);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .cs-section {
        padding: 60px 0;
    }

    .cs-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cs-intro-side {
        position: static;
    }

    .cs-reliable-grid,
    .cs-relocation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cs-slide img {
        height: 500px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .cs-container {
        width: min(100% - 28px, 1180px);
    }

    .cs-section {
        padding: 48px 0;
    }

    /* HERO */

    .cs-hero {
        min-height: 360px;
        padding: 65px 0;
        background-position: center;
    }

    .cs-hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    /* SERVICES */

    .cs-services-grid {
        grid-template-columns: 1fr;
    }

    .cs-service-list {
        grid-template-columns: 1fr;
    }

    /* IMAGE */

    .cs-image-wrap img {
        height: 320px;
    }

    .cs-image-wrap::after {
        width: 70px;
        height: 70px;
        left: -7px;
        bottom: -7px;
    }

    .cs-reliable-list {
        grid-template-columns: 1fr;
    }

    /* CONTACT */

    .cs-contact-strip-inner {
        display: block;
        padding: 28px 23px;
    }

    .cs-contact-strip .cs-btn {
        margin-top: 20px;
    }

    /* PROJECTS */

    .cs-slide img {
        height: 320px;
    }

    .cs-arrow {
        width: 42px;
        height: 42px;
    }

    .cs-prev {
        left: 9px;
    }

    .cs-next {
        right: 9px;
    }

    /* CTA */

    .cs-final {
        padding: 45px 0;
    }

    .cs-final-inner {
        display: block;
        padding: 30px 24px;
    }

    .cs-final .cs-btn {
        margin-top: 23px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .cs-hero {
        min-height: 310px;
    }

    .cs-hero h1 {
        font-size: 40px;
    }

    .cs-title {
        font-size: 30px;
    }

    .cs-btn {
        width: 100%;
    }

    .cs-slide img {
        height: 270px;
    }

}
