/* =========================================================
   CASTOR PAGE
========================================================= */

.ct-page {
    --red: #C71111;
    --red-dark: #a90e0e;
    --navy: #071321;
    --navy-2: #102238;
    --text: #172131;
    --muted: #687383;
    --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;
}

.ct-page *,
.ct-page *::before,
.ct-page *::after {
    box-sizing: border-box;
}

.ct-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.ct-section {
    padding: 75px 0;
}

.ct-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.ct-eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--red);
}

.ct-title {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: clamp(32px, 4vw, 51px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    font-weight: 850;
}

.ct-title span {
    color: var(--red);
}

.ct-text {
    margin: 0 0 17px;
    color: var(--muted);
    font-size: 16px;
}

.ct-text:last-child {
    margin-bottom: 0;
}

.ct-page a {
    color: var(--red);
}

.ct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 27px;
    border-radius: 7px;
    background: var(--red);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .35px;
    text-transform: uppercase;
    box-shadow: 0 12px 25px rgba(199,17,17,.18);
    transition: .25s ease;
}

.ct-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}


/* =========================================================
   HERO — TITLE ONLY
========================================================= */

.ct-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(
            90deg,
            rgba(4,13,25,.91) 0%,
            rgba(4,13,25,.70) 52%,
            rgba(4,13,25,.25) 100%
        ),
        url("/images/locations/movers-in-castor/2149103448.jpg");
    background-size: cover;
    background-position: center;
}

.ct-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -250px;
    bottom: -350px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;
}

.ct-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.ct-hero-label {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.ct-hero-label::before {
    content: "";
    width: 35px;
    height: 2px;
    background: var(--red);
}

.ct-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(54px, 7vw, 88px);
    line-height: .95;
    letter-spacing: -3.5px;
    font-weight: 900;
}

.ct-hero-subline {
    width: 70px;
    height: 4px;
    margin-top: 28px;
    background: var(--red);
    border-radius: 20px;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.ct-intro {
    padding: 78px 0 65px;
    background: #fff;
}

.ct-intro-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 65px;
}

.ct-intro-side {
    padding-top: 7px;
}

.ct-intro-side-number {
    color: var(--red);
    font-size: 65px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -4px;
}

.ct-intro-side-label {
    margin-top: 8px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.ct-intro-content {
    max-width: 850px;
}

.ct-intro-content p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 17px;
}

.ct-intro-content p:last-child {
    margin-bottom: 0;
}

.ct-intro-content strong {
    color: var(--text);
}


/* =========================================================
   SAVING MONEY HIGHLIGHT
========================================================= */

.ct-saving {
    padding: 0 0 70px;
}

.ct-saving-box {
    position: relative;
    padding: 38px 45px;
    border-radius: 16px;
    overflow: hidden;
    background:
        linear-gradient(
            120deg,
            #071321,
            #102238
        );
}

.ct-saving-box::after {
    content: "$";
    position: absolute;
    right: 30px;
    bottom: -55px;
    color: rgba(255,255,255,.035);
    font-size: 220px;
    line-height: 1;
    font-weight: 900;
}

.ct-saving-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.ct-saving-label {
    margin-bottom: 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.ct-saving-box h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(27px, 3vw, 39px);
    line-height: 1.15;
}

.ct-saving-box h2 span {
    color: var(--red);
}


/* =========================================================
   STRATEGIES
========================================================= */

.ct-strategies {
    background: var(--light);
}

.ct-strategy-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 38px;
}

.ct-strategy-header-text {
    max-width: 750px;
}

.ct-strategy-header-text .ct-title {
    margin-bottom: 0;
}

.ct-strategy-count {
    flex-shrink: 0;
    color: #aeb4bc;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ct-strategy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.ct-strategy-card {
    position: relative;
    padding: 32px;
    min-height: 285px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: .25s ease;
}

.ct-strategy-card:hover {
    transform: translateY(-4px);
    border-color: rgba(199,17,17,.25);
    box-shadow: 0 18px 38px rgba(15,23,42,.07);
}

.ct-strategy-card:nth-child(5) {
    grid-column: span 2;
}

.ct-strategy-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    margin-bottom: 23px;
    border-radius: 9px;
    background: var(--navy);
    color: #fff;
    font-size: 14px;
    font-weight: 850;
}

.ct-strategy-card h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.2;
}

.ct-strategy-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.ct-strategy-card strong {
    color: var(--text);
}


/* =========================================================
   CONTACT / QUOTE STRIP
========================================================= */

.ct-quote {
    padding: 52px 0;
    background: #fff;
}

.ct-quote-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 31px 37px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--red);
    border-radius: 12px;
    background: #fafafa;
}

.ct-quote-inner h3 {
    margin: 0;
    color: var(--navy);
    font-size: 25px;
    line-height: 1.25;
}

.ct-quote-inner p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 14px;
}


/* =========================================================
   CONCLUSION
========================================================= */

.ct-conclusion {
    padding: 80px 0;
    background: var(--navy);
}

.ct-conclusion-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 65px;
}

.ct-conclusion-side {
    padding-top: 5px;
}

.ct-conclusion-side span {
    display: block;
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ct-conclusion-side strong {
    display: block;
    margin-top: 13px;
    color: #fff;
    font-size: 29px;
    line-height: 1.15;
}

.ct-conclusion-content {
    max-width: 850px;
}

.ct-conclusion-content h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(30px, 4vw, 47px);
    line-height: 1.08;
    letter-spacing: -1.4px;
}

.ct-conclusion-content h2 span {
    color: var(--red);
}

.ct-conclusion-content p {
    margin: 0 0 18px;
    color: rgba(255,255,255,.70);
    font-size: 16px;
}

.ct-conclusion-content p:last-child {
    margin-bottom: 0;
}

.ct-conclusion-content strong {
    color: #fff;
}


/* =========================================================
   FAQ
========================================================= */

.ct-faq {
    background: #fff;
}

.ct-faq-header {
    max-width: 720px;
    margin-bottom: 32px;
}

.ct-faq-list {
    max-width: 930px;
}

.ct-faq-item {
    border-top: 1px solid var(--border);
}

.ct-faq-item:last-child {
    border-bottom: 1px solid var(--border);
}

.ct-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 4px;
    border: 0;
    background: transparent;
    color: var(--navy);
    text-align: left;
    font-family: inherit;
    font-size: 17px;
    font-weight: 750;
    cursor: pointer;
}

.ct-faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light);
    color: var(--red);
    font-size: 20px;
    transition: .25s ease;
}

.ct-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.ct-faq-answer-inner {
    padding: 0 55px 23px 4px;
    color: var(--muted);
    font-size: 15px;
}

.ct-faq-item.active .ct-faq-icon {
    background: var(--red);
    color: #fff;
    transform: rotate(45deg);
}


/* =========================================================
   PROJECTS
========================================================= */

.ct-projects {
    background: var(--light);
}

.ct-project-header {
    margin-bottom: 32px;
}

.ct-project-header .ct-title {
    margin-bottom: 0;
}

.ct-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #111;
}

.ct-slides {
    display: flex;
    transition: transform .55s cubic-bezier(.22,.61,.36,1);
}

.ct-slide {
    min-width: 100%;
}

.ct-slide img {
    display: block;
    width: 100%;
    height: 580px;
    object-fit: cover;
}

.ct-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 49px;
    height: 49px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    backdrop-filter: blur(7px);
    transition: .25s ease;
}

.ct-arrow:hover {
    background: var(--red);
    border-color: var(--red);
}

.ct-prev {
    left: 17px;
}

.ct-next {
    right: 17px;
}

.ct-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.ct-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 20px;
    background: #c3c7cd;
    cursor: pointer;
    transition: .25s ease;
}

.ct-dot.active {
    width: 25px;
    background: var(--red);
}


/* =========================================================
   FINAL CTA
========================================================= */

.ct-final {
    padding: 65px 0;
    background: #fff;
}

.ct-final-inner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 43px 48px;
    border-radius: 16px;
    background: linear-gradient(120deg, #071321, #11253e);
}

.ct-final-inner::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -90px;
    top: -100px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
}

.ct-final-content {
    position: relative;
    z-index: 2;
}

.ct-final h2 {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.13;
    letter-spacing: -1px;
}

.ct-final h2 span {
    color: var(--red);
}

.ct-final .ct-btn {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .ct-intro-layout,
    .ct-conclusion-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ct-intro-side-number {
        font-size: 48px;
    }

    .ct-strategy-header {
        display: block;
    }

    .ct-strategy-count {
        margin-top: 14px;
    }

    .ct-slide img {
        height: 480px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .ct-container {
        width: min(100% - 28px, 1180px);
    }

    .ct-section {
        padding: 52px 0;
    }

    .ct-hero {
        min-height: 350px;
        padding: 65px 0;
        background-position: center;
    }

    .ct-hero h1 {
        font-size: 51px;
        letter-spacing: -2.5px;
    }

    .ct-intro {
        padding: 52px 0;
    }

    .ct-intro-content p {
        font-size: 15px;
    }

    .ct-saving {
        padding-bottom: 52px;
    }

    .ct-saving-box {
        padding: 30px 24px;
    }

    .ct-strategy-grid {
        grid-template-columns: 1fr;
    }

    .ct-strategy-card:nth-child(5) {
        grid-column: auto;
    }

    .ct-strategy-card {
        min-height: auto;
        padding: 26px;
    }

    .ct-quote-inner {
        display: block;
        padding: 27px 23px;
    }

    .ct-quote .ct-btn {
        margin-top: 20px;
    }

    .ct-conclusion {
        padding: 55px 0;
    }

    .ct-conclusion-layout {
        gap: 30px;
    }

    .ct-faq-question {
        padding: 20px 0;
        font-size: 15px;
    }

    .ct-faq-answer-inner {
        padding-right: 15px;
    }

    .ct-slide img {
        height: 320px;
    }

    .ct-arrow {
        width: 42px;
        height: 42px;
    }

    .ct-prev {
        left: 8px;
    }

    .ct-next {
        right: 8px;
    }

    .ct-final {
        padding: 45px 0;
    }

    .ct-final-inner {
        display: block;
        padding: 32px 24px;
    }

    .ct-final .ct-btn {
        margin-top: 23px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .ct-hero h1 {
        font-size: 43px;
    }

    .ct-title {
        font-size: 31px;
    }

    .ct-btn {
        width: 100%;
    }

    .ct-slide img {
        height: 270px;
    }

}
