/* =========================================================
   CARDSTON MOVERS PAGE
========================================================= */

.cd-page {
    --red: #C71111;
    --red-dark: #a80d0d;
    --navy: #071321;
    --navy-2: #102238;
    --text: #172131;
    --muted: #697383;
    --light: #f5f6f8;
    --border: #e4e7eb;
    --white: #ffffff;

    font-family: Inter, ui-sans-serif, system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", sans-serif;

    color: var(--text);
    background: #fff;
    line-height: 1.7;
    overflow: hidden;
}

.cd-page *,
.cd-page *::before,
.cd-page *::after {
    box-sizing: border-box;
}

.cd-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.cd-section {
    padding: 78px 0;
}

.cd-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--red);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.cd-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--red);
}

.cd-title {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: clamp(34px, 4.4vw, 54px);
    line-height: 1.06;
    letter-spacing: -1.8px;
    font-weight: 900;
}

.cd-title span {
    color: var(--red);
}

.cd-text {
    margin: 0 0 17px;
    color: var(--muted);
    font-size: 16px;
}

.cd-page a {
    color: var(--red);
}

.cd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 51px;
    padding: 0 27px;
    border-radius: 6px;
    background: var(--red);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .35px;
    box-shadow: 0 12px 28px rgba(199,17,17,.20);
    transition: .25s ease;
}

.cd-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}


/* =========================================================
   HERO
========================================================= */

.cd-hero {
    position: relative;
    min-height: 535px;
    display: flex;
    align-items: flex-end;
    background-image:
        linear-gradient(
            90deg,
            rgba(4,13,25,.94) 0%,
            rgba(4,13,25,.76) 48%,
            rgba(4,13,25,.30) 100%
        ),
        url("/images/locations/movers-in-cardston/2149103448.jpg");
    background-size: cover;
    background-position: center;
}

.cd-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 115px;
    background: linear-gradient(
        to top,
        rgba(7,19,33,.72),
        transparent
    );
}

.cd-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 72px;
}

.cd-hero-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.cd-hero-top::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--red);
}

.cd-hero h1 {
    max-width: 850px;
    margin: 0;
    color: #fff;
    font-size: clamp(55px, 8vw, 94px);
    line-height: .93;
    letter-spacing: -4px;
    font-weight: 900;
}

.cd-hero-description {
    max-width: 700px;
    margin-top: 25px;
    color: rgba(255,255,255,.75);
    font-size: 16px;
}

.cd-hero-line {
    width: 65px;
    height: 4px;
    margin-top: 27px;
    background: var(--red);
}


/* =========================================================
   INTRO — GUIDE STYLE
========================================================= */

.cd-intro {
    padding: 80px 0 72px;
    background: #fff;
}

.cd-intro-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 70px;
    align-items: start;
}

.cd-intro-left {
    position: sticky;
    top: 30px;
}

.cd-intro-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.cd-intro-left h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(31px, 3.4vw, 45px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.cd-intro-left h2 span {
    color: var(--red);
}

.cd-intro-right p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 17px;
}

.cd-intro-right p:last-child {
    margin-bottom: 0;
}

.cd-intro-right strong {
    color: var(--text);
}


/* =========================================================
   GUIDE NAV / MINI STATEMENT
========================================================= */

.cd-guide-bar {
    padding: 0 0 75px;
}

.cd-guide-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.cd-guide-item {
    padding: 27px 28px;
    background: #fafafa;
    border-right: 1px solid var(--border);
}

.cd-guide-item:last-child {
    border-right: 0;
}

.cd-guide-item small {
    display: block;
    margin-bottom: 6px;
    color: var(--red);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.cd-guide-item strong {
    display: block;
    color: var(--navy);
    font-size: 17px;
    line-height: 1.25;
}


/* =========================================================
   WHY TIPPING MATTERS
========================================================= */

.cd-reasons {
    background: var(--navy);
}

.cd-reasons-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 42px;
}

.cd-reasons-header .cd-title {
    color: #fff;
    margin-bottom: 0;
    max-width: 750px;
}

.cd-reasons-header .cd-title span {
    color: var(--red);
}

.cd-reasons-count {
    color: rgba(255,255,255,.45);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.cd-reason-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.cd-reason-card {
    position: relative;
    padding: 34px;
    min-height: 285px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 13px;
    background: rgba(255,255,255,.045);
    transition: .25s ease;
}

.cd-reason-card:hover {
    background: rgba(255,255,255,.075);
    border-color: rgba(199,17,17,.5);
    transform: translateY(-3px);
}

.cd-reason-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    margin-bottom: 22px;
    border-radius: 8px;
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.cd-reason-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 21px;
    line-height: 1.2;
}

.cd-reason-card p {
    margin: 0;
    color: rgba(255,255,255,.66);
    font-size: 15px;
}


/* =========================================================
   CONTACT STRIP
========================================================= */

.cd-contact {
    padding: 52px 0;
    background: #fff;
}

.cd-contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 31px 36px;
    border-radius: 12px;
    background: var(--light);
    border: 1px solid var(--border);
}

.cd-contact-box h3 {
    margin: 0;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.2;
}

.cd-contact-box p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 14px;
}


/* =========================================================
   BEST PRACTICES — DIFFERENT DESIGN
========================================================= */

.cd-practices {
    background: #f5f6f8;
}

.cd-practices-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 65px;
}

.cd-practices-intro {
    position: relative;
}

.cd-practices-intro::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: var(--red);
}

.cd-practices-intro-inner {
    padding-left: 28px;
}

.cd-practices-intro h2 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: clamp(32px, 3.4vw, 45px);
    line-height: 1.06;
    letter-spacing: -1.4px;
}

.cd-practices-intro h2 span {
    color: var(--red);
}

.cd-practices-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.cd-practice-list {
    display: grid;
    gap: 12px;
}

.cd-practice-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 20px;
    padding: 25px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--border);
}

.cd-practice-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(199,17,17,.08);
    color: var(--red);
    font-size: 17px;
    font-weight: 900;
}

.cd-practice-item h3 {
    margin: 0 0 7px;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.25;
}

.cd-practice-item p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}


/* =========================================================
   CONCLUSION
========================================================= */

.cd-conclusion {
    padding: 82px 0;
    background: #fff;
}

.cd-conclusion-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 65px;
    align-items: start;
}

.cd-conclusion-heading {
    padding-right: 30px;
}

.cd-conclusion-heading .cd-title {
    margin-bottom: 0;
}

.cd-conclusion-content {
    padding: 32px;
    border-radius: 14px;
    background: var(--navy);
}

.cd-conclusion-content p {
    margin: 0 0 18px;
    color: rgba(255,255,255,.68);
    font-size: 15px;
}

.cd-conclusion-content p:last-child {
    margin-bottom: 0;
}

.cd-conclusion-content strong {
    color: #fff;
}


/* =========================================================
   FAQ
========================================================= */

.cd-faq {
    padding: 75px 0;
    background: var(--light);
}

.cd-faq-header {
    max-width: 700px;
    margin-bottom: 32px;
}

.cd-faq-header .cd-title {
    margin-bottom: 0;
}

.cd-faq-list {
    max-width: 950px;
}

.cd-faq-item {
    margin-bottom: 10px;
    border-radius: 9px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
}

.cd-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 23px 25px;
    border: 0;
    background: #fff;
    color: var(--navy);
    text-align: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

.cd-faq-plus {
    flex-shrink: 0;
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 20px;
    transition: .25s ease;
}

.cd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.cd-faq-answer-inner {
    padding: 0 70px 24px 25px;
    color: var(--muted);
    font-size: 15px;
}

.cd-faq-item.active .cd-faq-plus {
    background: var(--red);
    transform: rotate(45deg);
}


/* =========================================================
   PROJECTS
========================================================= */

.cd-projects {
    padding: 78px 0;
    background: #fff;
}

.cd-project-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.cd-project-heading .cd-title {
    margin-bottom: 0;
}

.cd-project-tag {
    padding: 9px 15px;
    border-radius: 30px;
    background: var(--light);
    color: var(--red);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cd-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #111;
}

.cd-slides {
    display: flex;
    transition: transform .55s cubic-bezier(.22,.61,.36,1);
}

.cd-slide {
    min-width: 100%;
}

.cd-slide img {
    display: block;
    width: 100%;
    height: 570px;
    object-fit: cover;
}

.cd-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    backdrop-filter: blur(7px);
    transition: .25s ease;
}

.cd-arrow:hover {
    background: var(--red);
    border-color: var(--red);
}

.cd-prev {
    left: 17px;
}

.cd-next {
    right: 17px;
}

.cd-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 17px;
}

.cd-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 20px;
    background: #c5c8cd;
    cursor: pointer;
    transition: .25s ease;
}

.cd-dot.active {
    width: 25px;
    background: var(--red);
}


/* =========================================================
   FINAL CTA
========================================================= */

.cd-final {
    padding: 60px 0;
    background: var(--light);
}

.cd-final-box {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 44px 48px;
    border-radius: 15px;
    background: var(--navy);
}

.cd-final-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -140px;
    top: -160px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 50%;
}

.cd-final-content {
    position: relative;
    z-index: 2;
}

.cd-final-box h2 {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.1;
    letter-spacing: -1.3px;
}

.cd-final-box h2 span {
    color: var(--red);
}

.cd-final-box .cd-btn {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .cd-intro-grid,
    .cd-practices-layout,
    .cd-conclusion-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .cd-intro-left {
        position: static;
    }

    .cd-practices-intro {
        max-width: 700px;
    }

    .cd-practices-intro-inner {
        padding-left: 25px;
    }

    .cd-slide img {
        height: 470px;
    }

}


@media (max-width: 700px) {

    .cd-container {
        width: min(100% - 28px, 1180px);
    }

    .cd-section {
        padding: 55px 0;
    }

    .cd-hero {
        min-height: 410px;
    }

    .cd-hero-content {
        padding-bottom: 55px;
    }

    .cd-hero h1 {
        font-size: 55px;
        letter-spacing: -2.8px;
    }

    .cd-hero-description {
        font-size: 14px;
    }

    .cd-intro {
        padding: 55px 0;
    }

    .cd-intro-right p {
        font-size: 15px;
    }

    .cd-guide-inner {
        grid-template-columns: 1fr;
    }

    .cd-guide-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .cd-guide-item:last-child {
        border-bottom: 0;
    }

    .cd-reasons-header {
        display: block;
    }

    .cd-reasons-count {
        margin-top: 12px;
    }

    .cd-reason-grid {
        grid-template-columns: 1fr;
    }

    .cd-reason-card {
        min-height: auto;
        padding: 27px;
    }

    .cd-contact-box {
        display: block;
        padding: 27px 23px;
    }

    .cd-contact-box .cd-btn {
        margin-top: 20px;
    }

    .cd-practice-item {
        grid-template-columns: 45px 1fr;
        gap: 14px;
        padding: 22px;
    }

    .cd-practice-icon {
        width: 43px;
        height: 43px;
    }

    .cd-conclusion-content {
        padding: 26px;
    }

    .cd-project-heading {
        display: block;
    }

    .cd-project-tag {
        display: inline-block;
        margin-top: 12px;
    }

    .cd-slide img {
        height: 320px;
    }

    .cd-arrow {
        width: 41px;
        height: 41px;
    }

    .cd-prev {
        left: 8px;
    }

    .cd-next {
        right: 8px;
    }

    .cd-final-box {
        display: block;
        padding: 32px 24px;
    }

    .cd-final-box .cd-btn {
        width: 100%;
        margin-top: 23px;
    }

}


@media (max-width: 480px) {

    .cd-hero h1 {
        font-size: 44px;
    }

    .cd-title {
        font-size: 32px;
    }

    .cd-btn {
        width: 100%;
    }

    .cd-slide img {
        height: 270px;
    }

}
