/* =========================================================
   GALAXY MOVERS CALGARY
   CAMROSE MOVERS PAGE
   THEME COLOR: #DA0032
   ========================================================= */

:root {
    --cam-red: #da0032;
    --cam-red-dark: #b8002a;
    --cam-red-soft: #fff1f4;
    --cam-black: #07111f;
    --cam-dark: #101820;
    --cam-gray: #586575;
    --cam-light: #f7f8fa;
    --cam-border: #e4e8ed;
    --cam-white: #ffffff;
}

* {
    box-sizing: border-box;
}

.camrose-page {
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--cam-black);
    background: #fff;
    overflow: hidden;
}

.camrose-page a {
    text-decoration: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.cam-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   COMMON
   ========================================================= */

.cam-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--cam-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.cam-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--cam-red);
}

.cam-title {
    margin: 0 0 15px;
    font-size: clamp(31px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 850;
}

.cam-description {
    margin: 0;
    color: var(--cam-gray);
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   HERO
   ========================================================= */

.cam-hero {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(3, 9, 17, .96) 0%,
            rgba(3, 9, 17, .83) 45%,
            rgba(3, 9, 17, .25) 100%
        ),
        url("/images/locations/movers-in-camrose/front-view-delivery-man-with-packagaes-1-1024x576.jpg")
        center/cover no-repeat;
}

.cam-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    right: -170px;
    top: -150px;
}

.cam-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: auto;
    padding: 90px 0;
}

.cam-hero-content {
    max-width: 720px;
}

.cam-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 40px;
    background: var(--cam-red);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    margin-bottom: 20px;
}

.cam-hero h1 {
    color: #fff;
    font-size: clamp(48px, 6.5vw, 80px);
    line-height: .95;
    letter-spacing: -3.5px;
    margin: 0 0 22px;
    font-weight: 900;
}

.cam-hero h1 span {
    color: #ff4c70;
}

.cam-hero-text {
    max-width: 650px;
    color: rgba(255,255,255,.82);
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 30px;
}

.cam-hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cam-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: .25s ease;
}

.cam-btn-red {
    color: #fff;
    background: var(--cam-red);
}

.cam-btn-red:hover {
    color: #fff;
    background: var(--cam-red-dark);
    transform: translateY(-2px);
}

.cam-btn-white {
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
    background: rgba(255,255,255,.07);
}

.cam-btn-white:hover {
    background: #fff;
    color: var(--cam-black);
}


/* =========================================================
   TRUST BAR
   ========================================================= */

.cam-trust {
    position: relative;
    z-index: 5;
    margin-top: -45px;
}

.cam-trust-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0,0,0,.12);
    overflow: hidden;
}

.cam-trust-item {
    padding: 25px 22px;
    border-right: 1px solid var(--cam-border);
}

.cam-trust-item:last-child {
    border-right: 0;
}

.cam-trust-number {
    color: var(--cam-red);
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 5px;
}

.cam-trust-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.cam-trust-item span {
    color: var(--cam-gray);
    font-size: 12px;
}


/* =========================================================
   INTRO / ABOUT
   ========================================================= */

.cam-intro {
    padding: 105px 0 85px;
}

.cam-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}

.cam-intro-content {
    max-width: 680px;
}

.cam-intro-content p {
    margin: 0 0 18px;
    color: var(--cam-gray);
    font-size: 16px;
    line-height: 1.8;
}

.cam-intro-visual {
    position: relative;
    min-height: 470px;
}

.cam-intro-image-main {
    width: 82%;
    height: 400px;
    margin-left: auto;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.cam-intro-image-small {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 52%;
    height: 210px;
    object-fit: cover;
    border: 9px solid #fff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,.16);
}

.cam-red-badge {
    position: absolute;
    top: 30px;
    left: 20px;
    width: 105px;
    height: 105px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--cam-red);
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    border: 7px solid #fff;
}


/* =========================================================
   SERVICES
   ========================================================= */

.cam-services {
    padding: 90px 0;
    background: var(--cam-light);
}

.cam-services-heading {
    max-width: 700px;
    margin-bottom: 40px;
}

.cam-services-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.cam-service {
    min-height: 225px;
    padding: 24px 18px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--cam-border);
    transition: .25s ease;
    text-align: center;
}

.cam-service:hover {
    transform: translateY(-6px);
    border-color: rgba(218,0,50,.35);
    box-shadow: 0 15px 35px rgba(0,0,0,.07);
}

.cam-service-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--cam-red-soft);
    color: var(--cam-red);
    font-size: 23px;
    font-weight: 900;
}

.cam-service-number {
    color: #9da6b1;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 9px;
}

.cam-service h3 {
    font-size: 16px;
    line-height: 1.3;
    margin: 0 0 10px;
}

.cam-service p {
    color: var(--cam-gray);
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}


/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.cam-why {
    padding: 100px 0;
    background: #fff;
}

.cam-why-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
    margin-bottom: 45px;
}

.cam-why-header-content {
    max-width: 650px;
}

.cam-why-header > p {
    max-width: 370px;
    margin: 0;
    color: var(--cam-gray);
    line-height: 1.7;
}

.cam-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--cam-border);
    border-bottom: 1px solid var(--cam-border);
}

.cam-why-card {
    min-height: 260px;
    padding: 30px 25px;
    border-right: 1px solid var(--cam-border);
}

.cam-why-card:last-child {
    border-right: 0;
}

.cam-why-icon {
    color: var(--cam-red);
    font-size: 31px;
    font-weight: 900;
    margin-bottom: 28px;
}

.cam-why-card h3 {
    font-size: 18px;
    line-height: 1.3;
    margin: 0 0 12px;
}

.cam-why-card p {
    color: var(--cam-gray);
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   RED FEATURE BAND
   ========================================================= */

.cam-feature {
    padding: 75px 0;
    background: var(--cam-red);
    color: #fff;
}

.cam-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.cam-feature h2 {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin: 0;
}

.cam-feature-text {
    color: rgba(255,255,255,.85);
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 20px;
}

.cam-feature-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.cam-feature-point {
    padding: 14px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    font-size: 13px;
    font-weight: 700;
}

.cam-feature-point::before {
    content: "✓";
    margin-right: 7px;
}


/* =========================================================
   PROJECT CAROUSEL
   ========================================================= */

.cam-projects {
    padding: 100px 0;
    background: var(--cam-light);
}

.cam-projects-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 35px;
}

.cam-projects-heading-left {
    max-width: 650px;
}

.cam-projects-heading > p {
    max-width: 360px;
    color: var(--cam-gray);
    line-height: 1.7;
    margin: 0;
}


/* carousel */

.cam-carousel {
    position: relative;
}

.cam-carousel-window {
    overflow: hidden;
    border-radius: 18px;
}

.cam-carousel-track {
    display: flex;
    transition: transform .55s cubic-bezier(.22,.61,.36,1);
}

.cam-slide {
    position: relative;
    flex: 0 0 100%;
    min-width: 100%;
    height: 520px;
    background: #111;
}

.cam-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cam-slide-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 100px 40px 30px;
    color: #fff;
    background: linear-gradient(
        transparent,
        rgba(0,0,0,.82)
    );
}

.cam-slide-info small {
    display: block;
    color: #ff5274;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.cam-slide-info h3 {
    margin: 0;
    font-size: 27px;
}

.cam-slide-info p {
    margin: 5px 0 0;
    color: rgba(255,255,255,.75);
    font-size: 13px;
}


/* arrows */

.cam-carousel-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--cam-black);
    box-shadow: 0 8px 25px rgba(0,0,0,.18);
    cursor: pointer;
    font-size: 22px;
    transition: .25s ease;
}

.cam-carousel-arrow:hover {
    color: #fff;
    background: var(--cam-red);
}

.cam-carousel-prev {
    left: 20px;
}

.cam-carousel-next {
    right: 20px;
}


/* dots */

.cam-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.cam-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ccd2d9;
    cursor: pointer;
    transition: .25s ease;
}

.cam-dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--cam-red);
}


/* =========================================================
   FAQ + TESTIMONIAL
   ========================================================= */

.cam-faq {
    padding: 100px 0;
    background: #fff;
}

.cam-faq-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: start;
}

.cam-faq-heading {
    margin-bottom: 30px;
}

.cam-faq-list {
    border-top: 1px solid var(--cam-border);
}

.cam-faq-item {
    border-bottom: 1px solid var(--cam-border);
}

.cam-faq-item summary {
    position: relative;
    cursor: pointer;
    list-style: none;
    padding: 21px 45px 21px 0;
    font-size: 15px;
    font-weight: 750;
}

.cam-faq-item summary::-webkit-details-marker {
    display: none;
}

.cam-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 3px;
    top: 15px;
    color: var(--cam-red);
    font-size: 25px;
    font-weight: 400;
}

.cam-faq-item[open] summary::after {
    content: "−";
}

.cam-faq-answer {
    padding: 0 30px 22px 0;
    color: var(--cam-gray);
    font-size: 13px;
    line-height: 1.75;
}


/* testimonial */

.cam-testimonial {
    position: relative;
    padding: 40px;
    border-radius: 20px;
    background: var(--cam-red-soft);
    overflow: hidden;
}

.cam-testimonial::before {
    content: "“";
    position: absolute;
    top: -25px;
    right: 20px;
    color: rgba(218,0,50,.09);
    font-size: 170px;
    line-height: 1;
    font-family: Georgia, serif;
}

.cam-quote-mark {
    color: var(--cam-red);
    font-size: 45px;
    font-family: Georgia, serif;
    line-height: 1;
}

.cam-testimonial blockquote {
    position: relative;
    margin: 15px 0 25px;
    color: var(--cam-dark);
    font-size: 19px;
    line-height: 1.65;
    font-weight: 600;
}

.cam-stars {
    color: var(--cam-red);
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.cam-reviewer {
    color: var(--cam-gray);
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.cam-final {
    padding: 25px 0 80px;
}

.cam-final-box {
    position: relative;
    overflow: hidden;
    padding: 65px;
    border-radius: 22px;
    background:
        linear-gradient(
            105deg,
            #da0032,
            #990024
        );
    color: #fff;
}

.cam-final-box::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -160px;
    top: -200px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
}

.cam-final-box::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: 50px;
    bottom: -180px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.cam-final-content {
    position: relative;
    z-index: 2;
    max-width: 730px;
}

.cam-final-box h2 {
    margin: 0 0 13px;
    font-size: clamp(33px, 4.5vw, 55px);
    line-height: 1.03;
    letter-spacing: -2px;
}

.cam-final-box p {
    margin: 0 0 25px;
    max-width: 650px;
    color: rgba(255,255,255,.84);
    line-height: 1.7;
}

.cam-final-box .cam-btn {
    background: #fff;
    color: var(--cam-dark);
}

.cam-final-box .cam-btn:hover {
    background: #f2f2f2;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .cam-services-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .cam-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cam-why-card:nth-child(2) {
        border-right: 0;
    }

    .cam-why-card:nth-child(-n+2) {
        border-bottom: 1px solid var(--cam-border);
    }

    .cam-intro-grid,
    .cam-faq-grid {
        grid-template-columns: 1fr;
    }

    .cam-intro-visual {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }
}


@media (max-width: 750px) {

    .cam-trust-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .cam-trust-item:nth-child(2) {
        border-right: 0;
    }

    .cam-trust-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--cam-border);
    }

    .cam-services-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .cam-feature-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .cam-projects-heading,
    .cam-why-header {
        display: block;
    }

    .cam-projects-heading > p,
    .cam-why-header > p {
        margin-top: 15px;
    }

    .cam-slide {
        height: 430px;
    }
}


@media (max-width: 600px) {

    .cam-container,
    .cam-hero-inner {
        width: min(100% - 28px, 1180px);
    }

    .cam-hero {
        min-height: 590px;
    }

    .cam-hero-inner {
        padding: 65px 0;
    }

    .cam-hero h1 {
        font-size: 49px;
        letter-spacing: -2.5px;
    }

    .cam-hero-text {
        font-size: 15px;
    }

    .cam-hero-buttons {
        flex-direction: column;
    }

    .cam-btn {
        width: 100%;
    }

    .cam-trust {
        margin-top: -25px;
    }

    .cam-trust-inner {
        grid-template-columns: 1fr;
    }

    .cam-trust-item {
        border-right: 0 !important;
        border-bottom: 1px solid var(--cam-border);
    }

    .cam-trust-item:last-child {
        border-bottom: 0;
    }

    .cam-intro,
    .cam-services,
    .cam-why,
    .cam-projects,
    .cam-faq {
        padding: 65px 0;
    }

    .cam-intro-image-main {
        width: 88%;
        height: 330px;
    }

    .cam-intro-image-small {
        width: 55%;
        height: 175px;
    }

    .cam-red-badge {
        width: 85px;
        height: 85px;
        font-size: 10px;
    }

    .cam-services-list {
        grid-template-columns: 1fr;
    }

    .cam-service {
        min-height: auto;
        text-align: left;
        display: grid;
        grid-template-columns: 58px 1fr;
        column-gap: 17px;
        align-items: center;
    }

    .cam-service-icon {
        grid-row: span 3;
        margin: 0;
    }

    .cam-service-number {
        margin: 0;
    }

    .cam-service h3 {
        margin: 3px 0 5px;
    }

    .cam-service p {
        margin: 0;
    }

    .cam-why-grid {
        grid-template-columns: 1fr;
    }

    .cam-why-card {
        border-right: 0;
        border-bottom: 1px solid var(--cam-border);
    }

    .cam-why-card:last-child {
        border-bottom: 0;
    }

    .cam-feature-points {
        grid-template-columns: 1fr;
    }

    .cam-slide {
        height: 390px;
    }

    .cam-slide-info {
        padding: 80px 22px 25px;
    }

    .cam-slide-info h3 {
        font-size: 22px;
    }

    .cam-carousel-arrow {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .cam-carousel-prev {
        left: 10px;
    }

    .cam-carousel-next {
        right: 10px;
    }

    .cam-faq-grid {
        gap: 45px;
    }

    .cam-testimonial {
        padding: 30px 25px;
    }

    .cam-testimonial blockquote {
        font-size: 17px;
    }

    .cam-final {
        padding-bottom: 50px;
    }

    .cam-final-box {
        padding: 42px 25px;
    }

    .cam-final-box h2 {
        font-size: 35px;
    }
}
