/* =========================================================
   POWER CRANES  -  Responsive Stylesheet
   Breakpoints:  Tablet/iPad (<= 992px)  |  Mobile (<= 600px)
   ========================================================= */

/* =========================================================
   LARGE TABLET / SMALL LAPTOP  (<= 1024px)
   ========================================================= */
   @media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .hero {
        min-height: 700px;
        padding: 120px 0 110px;
        overflow: visible;
    }

    .hero__title {
        font-size: 42px;
    }

    .hero__image {
        width: clamp(340px, 48vw, 580px);
        left: 0;
    }

    .section__title,
    .appointment__title {
        font-size: 32px;
    }

    .services__track {
        padding-left: 20px;
        padding-right: 20px;
        gap: 16px;
    }

    .service-card {
        flex: 0 0 clamp(240px, 55vw, 300px);
    }
}

/* =========================================================
   IPAD / TABLET  (<= 992px)
   ========================================================= */
@media (max-width: 992px) {
    .section {
        padding: 70px 0;
    }

    /* Nav becomes a slide-in panel */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        gap: 5px;
        padding: 0;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 8px;
        transition: background 0.3s ease, border-color 0.3s ease;
    }

    .menu-toggle span {
        width: 18px;
        height: 2px;
        border-radius: 2px;
    }

    .menu-toggle.open {
        background: var(--orange);
        border-color: var(--orange);
    }

    .menu-toggle.open span {
        background: var(--dark);
    }

    .menu-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .header__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 86vw);
        max-width: 86vw;
        height: 100vh;
        height: 100dvh;
        background: #1a1c22;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        border-top: none;
        padding: 88px 0 32px;
        box-shadow: -16px 0 48px rgba(0, 0, 0, 0.55);
        transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 1000;
        overflow-y: auto;
    }

    .header__menu::before {
        display: block;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 3px;
        background: var(--orange);
        z-index: 2;
    }

    .header__menu.open {
        right: 0;
    }

    /* Dim page behind open menu */
    body.menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 999;
        animation: menuFadeIn 0.3s ease;
    }

    @keyframes menuFadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav {
        width: 100%;
        flex: 0 0 auto;
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        height: auto;
        padding: 8px 24px 0;
    }

    .nav__link {
        display: block;
        padding: 16px 4px;
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 0.6px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
        transition: color 0.25s ease, padding-left 0.25s ease;
    }

    .nav__link:hover,
    .nav__link.active {
        color: var(--orange);
        padding-left: 10px;
    }

    .nav__cta {
        margin: 28px 24px 0;
        width: calc(100% - 48px);
        height: 52px;
        align-self: auto;
        clip-path: none;
        padding: 0 20px;
        border-radius: 6px;
        justify-content: center;
        font-size: 16px;
        box-shadow: 0 8px 24px rgba(243, 155, 25, 0.35);
    }

    .nav__cta:hover {
        transform: none;
    }

    /* Hero â€” keep side-by-side on iPad (stack only on mobile) */
    .hero {
        display: flex;
        align-items: center;
        min-height: 640px;
        padding: 120px 0 100px;
        text-align: left;
        overflow: visible;
    }

    .hero__inner {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .hero__content {
        width: 48%;
        max-width: 440px;
        margin: 0;
        position: relative;
        z-index: 3;
    }

    .hero__title {
        font-size: 38px;
        line-height: 1.12;
        margin-bottom: 14px;
    }

    .hero__text {
        font-size: 15px;
        max-width: 400px;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 24px;
    }

    .hero__eyebrow {
        font-size: 13px;
        justify-content: flex-start;
    }

    .hero__actions {
        justify-content: flex-start;
    }

    .hero__image {
        position: absolute;
        left: -2%;
        top: 54%;
        transform: translateY(-50%);
        width: clamp(300px, 52vw, 520px);
        max-width: none;
        margin: 0;
        z-index: 2;
        animation: none;
    }

    .hero__image img {
        animation: none;
        filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.5));
    }

    /* Narrower iPad portrait â€” tighten proportions */
    @media (max-width: 820px) {
        .hero {
            min-height: 580px;
            padding: 110px 0 90px;
        }

        .hero__title {
            font-size: 32px;
        }

        .hero__text {
            font-size: 14px;
            max-width: 340px;
        }

        .hero__content {
            width: 50%;
            max-width: 360px;
        }

        .hero__image {
            width: clamp(260px, 50vw, 400px);
            left: -4%;
            top: 56%;
        }
    }

    /* Features -> 2 cols */
    .features__grid {
        grid-template-columns: 1fr 1fr;
        transition: none;
    }

    .features__grid:has(.feature-card:nth-child(1):hover),
    .features__grid:has(.feature-card:nth-child(2):hover),
    .features__grid:has(.feature-card:nth-child(3):hover),
    .features__grid:has(.feature-card:nth-child(4):hover) {
        grid-template-columns: 1fr 1fr;
    }

    .feature-card {
        height: 240px;
    }

    /* Overview stacks */
    .overview__inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px 80px;
    }

    .overview__sky {
        height: 42%;
    }

    .overview__images {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .overview__title {
        font-size: 35px;
        color: #000;
        line-height: 50px;
    }

    .overview__content {
        max-width: 100%;
        padding-top: 20px;
    }

    /* Services -> 2 cols */
    .services__head {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 20px;
    }

    .services__cta {
        border-radius: 6px;
        padding: 14px 26px;
    }

    .services__track {
        padding-left: 20px;
        padding-right: 20px;
    }

    .service-card {
        flex: 0 0 260px;
    }

    /* Steps -> 2 cols */
    .steps__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    .step__arrow {
        display: none;
    }

    .step--down,
    .step--up {
        margin-top: 0;
    }

    .step__circle {
        width: 110px;
        height: 110px;
        font-size: 36px;
    }

    /* Footer -> 2 cols */
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer__col--links {
        max-width: 100%;
    }

    .footer__watermark {
        font-size: 90px;
    }

    /* Reveal directions collapse to fade-up on tablet */
    .reveal--left,
    .reveal--right {
        transform: translateY(45px);
    }
}

/* =========================================================
   MOBILE  (<= 600px)
   ========================================================= */
@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 20px 0 100px!important;
    }

    .header {
        height: 66px;
    }

    .header__inner {
        height: 66px;
    }

    .logo__text {
        font-size: 19px;
    }

    .logo img {
        height: 48px;
    }

    /* Hero â€” stacked for phones */
    .hero {
        display: block;
        min-height: auto;
        padding: 110px 0 0;
        text-align: center;
        overflow: visible;
    }

    .hero__inner {
        display: block;
    }

    .hero__content {
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__text {
        font-size: 15px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 22px;
    }

    .hero__eyebrow {
        justify-content: center;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 8px;
    }

    .hero__actions .btn {
        width: auto;
        max-width: 100%;
        justify-content: center;
        padding: 12px 8px 12px 18px;
        font-size: 14px;
        gap: 8px;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 16px) 100%, 0 100%);
    }

    .hero__actions .btn .white-arrow {
        width: 24px;
    }
    .brand-group__label {
      font-size: 18px;
   }
    .hero__image {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 420px;
        margin: 20px auto -8px;
        z-index: 2;
    }

    .hero__image img {
        margin: 0 auto;
    }

    .overview .btn.btn--primary {
        width: auto;
        max-width: 100%;
        padding: 12px 8px 12px 18px;
        font-size: 14px;
        gap: 8px;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 16px) 100%, 0 100%);
    }

    .overview .btn.btn--primary .white-arrow {
        width: 24px;
    }

    /* Headings */
    .section__title,
    .appointment__title,
    .overview__title {
        font-size: 26px;
    }

    .section__title br {
        display: none;
    }

    .services__title {
        font-size: 24px;
    }

    .services {
        padding: 70px 0 150px;
        background-size: cover;
        background-position: center;
    }

    .service-card {
        flex: 0 0 65vw;
    }

    .service-card__media {
        height: 180px;
    }

    .service-card__footer h3 {
        font-size: 13px;
    }

    /* All grids -> single column */
    .features__grid {
        grid-template-columns: 1fr;
        transition: none;
    }

    .features__grid:has(.feature-card:nth-child(1):hover),
    .features__grid:has(.feature-card:nth-child(2):hover),
    .features__grid:has(.feature-card:nth-child(3):hover),
    .features__grid:has(.feature-card:nth-child(4):hover) {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .feature-card--active,
    .features__grid .feature-card:hover {
        height: auto;
        min-height: 220px;
        padding: 22px;
    }

    .feature-card--active .feature-card__body,
    .features__grid .feature-card:hover .feature-card__body,
    .features__grid:hover .feature-card--active:not(:hover) .feature-card__body {
        max-width: 100%;
        padding-right: 0;
        padding-bottom: 0;
    }

    .feature-card--active .feature-card__media,
    .features__grid .feature-card:hover .feature-card__media {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 160px;
        margin-top: 16px;
        transform: none;
    }

    .feature-card__media img {
        clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%, 0 16%);
        border-radius: 12px;
    }

    .steps__grid,
    .footer__grid,
    .form__row {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 28px 22px;
    }

    .services__head {
        gap: 16px;
    }

    /* Steps */
    .steps__grid {
        gap: 8px;
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .step__circle {
        width: 100px;
        height: 100px;
        font-size: 34px;
    }

    .step__num {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .appointment {
        background-size: 150%;
        background-attachment: scroll;
        background-position: center top;
    }

    .appointment__media img {
        height: 260px;
        border-radius: 20px;
        width: 100%;
        bottom: 80px;
    }

    .appointment__media {
        transform: translateY(36px);
    }

    .appointment__title {
        font-size: 28px;
    }

    .form__row {
        grid-template-columns: 1fr;
    }

    .appointment__slash {
        height: 50px;
    }

    /* Overview badge repositioned */
    .overview__images {
        max-width: 100%;
    }

    .overview__title {
        font-size: 24px;
        padding-left: 16px;
        color: #000;
        line-height: 1.6;
    }

    .overview__text {
        padding-left: 16px;
        font-size: 14px;
        color: #3d3b3b;
    }

    .overview__bar {
        width: 5px;
    }

    .overview__feats p {
        font-size: 14px;
    }

    .overview__feat-icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .overview__sky {
        height: 38%;
    }

    .overview__inner {
        padding: 0 16px 70px;
    }

    .overview__content {
        padding-top: 10px;
    }

    /* Footer */
    .footer {
        padding: 55px 0 90px;
    }

    .footer__grid {
        gap: 36px;
    }

    .footer__logo img {
        height: 76px;
    }

    .footer__col--brand {
        text-align: left;
    }

    .footer__text {
        max-width: 100%;
    }

    .footer__social {
        justify-content: flex-start;
    }

    .footer__contact-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer__watermark {
        font-size: 52px;
        bottom: -8px;
    }

    /* Back to top smaller */
    .to-top {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
    }
}

/* =========================================================
   SMALL MOBILE  (<= 380px)
   ========================================================= */
@media (max-width: 380px) {
    .hero__title {
        font-size: 28px;
    }

    .btn {
        padding: 11px 6px 11px 16px;
        font-size: 13px;
        gap: 6px;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 14px) 100%, 0 100%);
    }

    .btn .white-arrow {
        width: 22px;
    }

    .logo__icon {
        font-size: 22px;
    }
}

/* =========================================================
   ABOUT PAGE Ã¢â‚¬â€ Tablet / iPad
   ========================================================= */
@media (max-width: 992px) {
    .page-hero {
        min-height: 280px;
    }

    .page-hero__inner {
        padding: 120px 20px 80px;
    }

    .page-hero__slash {
        height: 42px;
    }

    .about-panel__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-panel__content {
        order: 1;
        padding-left: 18px;
    }

    .about-panel__media {
        order: 2;
        margin-left: calc(50% - 50vw);
        width: min(520px, calc(100vw - 24px));
        max-width: none;
        min-height: 420px;
    }

    .about-panel__img--back,
    .about-panel__media > img:only-child {
        height: 340px;
        clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%);
    }

    .about-panel__img--front,
    .about-panel__media .track-img {
        left: 0;
        right: auto;
        width: 90%;
        max-width: 520px;
        bottom: -28px;
    }

    .about-stats__inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px 16px;
    }

    .about-values__grid {
        grid-template-columns: 1fr 1fr;
    }

    .value-card--featured {
        grid-column: 1 / -1;
        grid-template-columns: 1.2fr 1fr;
    }

    .about-why__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .brand-groups-row {
        grid-template-columns: 1fr;
    }

    .about-why__slash {
        height: 48px;
    }
}

/* =========================================================
   ABOUT PAGE Ã¢â‚¬â€ Mobile
   ========================================================= */
@media (max-width: 600px) {
    .page-hero {
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
    }
.serv_media img {
    height: 110px !important;
}
    .page-hero__title {
        font-size: 32px;
    }

    .page-hero__inner {
        padding: 110px 16px 72px;
    }

    .about-intro {
        padding-top: 48px;
    }

    .about-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .about-tab {
        width: 100%;
        text-align: center;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
        padding: 2px;
    }

    .about-tab > span {
        padding: 12px 20px;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
    }

    .about-tab.is-active {
        padding: 2px;
    }

    .about-panel__media {
        order: 2;
        margin-left: calc(50% - 50vw);
        width: calc(100vw - 16px);
        min-height: 340px;
    }

    .about-panel__img--back,
    .about-panel__media > img:only-child {
        height: 344px;
        clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
    }

    .about-panel__img--front,
    .about-panel__media .track-img {
        left: 0;
        right: auto;
        width: 100%;
        max-width: none;
        bottom: -109px;
    }

    .about-panel__content {
        order: 1;
        padding-left: 16px;
    }

    .about-panel__content::before {
        width: 4px;
        max-height: 160px;
    }

    .about-checks li {
        font-size: 14px;
    }

    .about-stats {
        padding: 90px 0 110px;
        margin-top: -32px;
        background-size: auto 100%;
    }

    .about-stats__inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px 12px;
    }

    .about-stat:last-child {
        grid-column: 1 / -1;
    }

    .about-values__grid {
        grid-template-columns: 1fr;
    }

    .value-card--featured {
        grid-template-columns: 1fr;
        clip-path: none;
        border-radius: 8px;
    }

    .value-card__media {
        min-height: 180px;
    }

    .about-why {
        padding: 70px 0 90px;
    }

    .about-why__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .why-card {
        min-height: 130px;
        padding: 26px 10px 18px;
    }

    .why-card h3 {
        font-size: 13px;
    }

    .brand-group {
        padding: 36px 16px 20px;
        margin-bottom: 28px;
    }

    .brand-logo {
        min-width: calc(50% - 8px);
        height: 56px;
        font-size: 13px;
    }

    .about-brands__banner,
    .about-brands__banner img {
        height: 200px;
        max-height: 200px;
        border-radius: 12px;
    }
}

/* =========================================================
   CONTACT PAGE Ã¢â‚¬â€ Responsive
   ========================================================= */
@media (max-width: 992px) {
    .svc-page__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .svc-item:nth-child(13),
    .svc-item:nth-child(14) {
        grid-column: auto;
    }

    .contact-reach__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-reach__media {
        max-width: 560px;
        border-radius: 0 70px 0 70px;
    }

    .contact-reach__media img {
        min-height: 340px;
    }

    .contact-card__body--split {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .overview__text {
    color: #000;
    font-size: 16px;
}
}

@media (max-width: 600px) {
    .svc-page {
        padding-top: 56px;
        padding-bottom: 60px;
    }

    .svc-page__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .svc-item {
        padding: 10px 10px 18px;
        border-radius: 16px;
    }

    .svc-item__media img {
        height: auto;
        border-radius: 12px;
        /*-webkit-mask-image: radial-gradient(
            circle 26px at calc(100% - 10px) calc(100% + 6px),
            transparent 24px,
            #000 25.5px
        );
        mask-image: radial-gradient(
            circle 26px at calc(100% - 10px) calc(100% + 6px),
            transparent 24px,
            #000 25.5px
        );*/
    }

    .svc-item__media::after {
        display: none;
    }

    .svc-item__icon {
        width: 50px;
        height: 50px;
        font-size: 14px;
        right: 2px;
        top: 70px;
        border-width: 2px;
    }
.svc-item__icon img {
    width: 32px;
}
    .svc-item__title {
        font-size: 14px;
        padding: 26px 2px 0;
    }

    .contact-reach {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .contact-reach__media {
        border-radius: 0 48px 0 48px;
        max-width: none;
    }

    .contact-reach__media img {
        min-height: 260px;
    }

    .contact-card {
        padding: 16px;
    }

    .contact-card__icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .contact-card__body strong {
        font-size: 15px;
    }

    .contact-card__sep {
        display: block;
        margin: 2px 0;
        opacity: 0;
        height: 0;
        overflow: hidden;
    }

    .contact-card__body strong a {
        display: block;
    }
    p.feature-card__text {
        margin: 0;
    }
    .feature-card__body {
        height: auto;
    }
}


@media screen and (min-width: 1200px) and (max-width: 1800px) {
.hero__text {
    font-size: 16px;
    margin-bottom: 15px;
}
.btn {
    padding: 10px 27px 10px 20px;
    font-size: 16px;
}
.hero__title {
    font-size: 52px;
}
.appointment__submit {
    font-size: 16px;
    padding: 10px 34px 10px 40px;
}
.page-hero__title {
    font-size: 52px;
}
.page-hero {
    min-height: 590px;
}
}
