:root {
    --ASF-blue-sky: #22A5DF;
    --ASF-blue-teal: #006994;
    --ASF-blue-midnight: #1A2B3C;
    --ASF-blue-navy: #192C3E;

    --ASF-black: #1E1E1E;
    --ASF-white: #fff;
    --ASF-gray-light: #F4F4F4;

    --font-heading: "Jost", sans-serif;
    --font-body: "Poppins", sans-serif;

    --size-14-10: clamp(10px, 1vw, 14px);
    --size-16-12: clamp(12px, 1vw, 16px);
    --size-18-14: clamp(14px, 1.1vw, 18px);
    --size-20-16: clamp(16px, 1.3vw, 20px);
    --size-24-18: clamp(18px, 1.3vw, 24px);
    --size-25-18: clamp(18px, 1.3vw, 25px);
    --size-32-24: clamp(24px, 2vw, 32px);
    --size-36-24: clamp(24px, 2.2vw, 36px);
    --size-40-26: clamp(26px, 2.4vw, 40px);
    --size-48-32: clamp(32px, 3vw, 48px);
    --size-60-40: clamp(40px, 4vw, 60px);
    --size-96-64: clamp(64px, 6vw, 96px);
    --size-120-80: clamp(80px, 8vw, 120px);
}

body, p {
    font-family: var(--font-body);
    font-size: var(--size-16-12);
    font-style: normal;
    font-weight: 400;
    color: var(--ASF-blue-midnight);
}

/* --- HEADER STYLES --- */
#page-container {
    padding-top: 0 !important;
}

/* Base transparent header */
.header-ppc-trailers {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    z-index: 999;
    box-shadow: none;
    padding: 20px 0;
    transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
}

/* Layout */
.ppc-header-inner {
    margin: 0 auto;
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

/* Logo + button */
.ppc-logo img {
    width: 160px;
    height: auto;
    display: block;
    transition: width .25s ease, transform .25s ease;
}


.ff_submit_btn_wrapper {
    text-align: right !important;
}

/* Base button styles */
.ppc-quote-btn,
.ff_btn_style {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 70px 14px 30px !important;
    border-radius: 50px !important;
    text-decoration: none;
    overflow: hidden;
    font-weight: 400 !important;
    z-index: 0;
    isolation: isolate;
    font-size: var(--size-18-14) !important;
}

.ppc-quote-btn {
    background: var(--ASF-blue-sky);
    color: var(--ASF-blue-midnight);
}

.ff_btn_style {
    border: 1px solid var(--ASF-blue-sky) !important;
    color: var(--ASF-blue-midnight) !important;
    background: var(--ASF-white) !important;
}

/* text layer */
.ppc-quote-btn span,
.ff_btn_style span {
    position: relative;
    z-index: 2;
}

/* expanding black background */
.ppc-quote-btn::after,
.ff_btn_style::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: width 0.35s ease, border-radius 0.35s ease;
    z-index: 1;
}

.ppc-quote-btn::after {
    background: var(--ASF-black);
}

.ff_btn_style::after {
    background: var(--ASF-blue-sky);
}

/* arrow icon */
.ppc-quote-btn::before,
.ff_btn_style::before {
    content: "→";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    font-size: 18px;
    line-height: 1;

    z-index: 3;
}

.ppc-quote-btn::before {
    color: var(--ASF-blue-sky);
}

.ff_btn_style::before {
    color: var(--ASF-blue-midnight);
}


.ppc-quote-btn:hover {
    color: var(--ASF-blue-sky);
}

.ppc-quote-btn:hover::after,
.ff_btn_style:hover::after {
    width: calc(100% - 12px);
    border-radius: 40px;
}


/* Reserve space for fixed header (animated) */
body.ppc-landing {
    --header-space: 0px;
    padding-top: var(--header-space);
    margin-top: 40px;
    transition: padding-top .25s ease;
}

/* ===== Shrunk state on scroll ===== */
body.ppc-landing.header-shrink .header-ppc-trailers {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

body.ppc-landing.header-shrink .ppc-logo img {
    width: 130px;
}

body.ppc-landing.header-shrink {
    --header-space: 72px;
}

/* Mobile tweaks (optional) */
@media (max-width: 767px) {
    .ppc-logo img {
        width: 140px;
    }

    body.ppc-landing.header-shrink .ppc-logo img {
        width: 120px;
    }
}

@media (min-width: 768px) {
    .ppc-header-inner {
        flex-direction: row;
        gap: 0;
    }
}

/* --- HEADER STYLES END --- */

/* --- FOOTER STYLES --- */
/* ===== Trailers PPC Footer ===== */
body.ppc-landing .footer-ppc-trailers {
    background: var(--ASF-blue-navy) !important;
    color: var(--ASF-white);
    text-align: center;
    padding: 42px 20px 28px;
    border-top: 0 !important;
}

body.ppc-landing .ppc-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* Logo + brand */
body.ppc-landing .ppc-footer-logo img {
    display: block;
    margin: 0 auto 10px;
    width: 250px;
    height: auto;
    filter: none; /* keep original */
}

body.ppc-landing .ppc-footer-logo .footer-brand {
    margin: 0 0 18px;
    letter-spacing: 2px;
    font-size: 14px;
    color: #d8d8d8;
}

/* Social buttons row */
body.ppc-landing .ppc-footer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

body.ppc-landing .ppc-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .25), inset 0 0 0 1px rgba(0, 0, 0, .05);
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

body.ppc-landing .ppc-footer-social a:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .18), inset 0 0 0 1px rgba(0, 0, 0, .08);
    background: var(--ASF-blue-teal);
    transform: scale(1.1);
}

body.ppc-landing .ppc-footer-social a:focus-visible {
    outline: 2px solid #e6b400;
    outline-offset: 2px;
}

body.ppc-landing .ppc-footer-social img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Separator line */
body.ppc-landing .ppc-footer-separator {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
    width: 88%;
    margin: 18px auto 14px;
}

/* Legal/copyright */
body.ppc-landing .ppc-footer-legal p {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.55;
    color: #b9b9b9;
}

body.ppc-landing .ppc-footer-legal a {
    color: #e6b400; /* subtle gold accent */
    text-decoration: none;
}

body.ppc-landing .ppc-footer-legal a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    body.ppc-landing .footer-ppc-trailers {
        padding: 34px 16px 24px;
    }

    body.ppc-landing .ppc-footer-social {
        gap: 8px;
    }

    body.ppc-landing .ppc-footer-separator {
        width: 92%;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    body.ppc-landing .ppc-footer-social a {
        transition: none;
    }
}

/* --- FOOTER STYLES END --- */


h1, h2, h3 {
    color: var(--ASF-blue-midnight);
    font-family: var(--font-heading) !important;
    font-weight: 400 !important;
}

h1, h2 {
    font-size: var(--size-48-32) !important;
}

.textalign-left {
    text-align: left;
}

.textalign-center {
    text-align: center;
}

.flex {
    display: flex;
}

.flexdirection-column {
    flex-direction: column;
}

.alignitems-center {
    align-items: center;
}

.alignitems-end {
    align-items: end;
}

.justifycontent-center {
    justify-content: center;
}

.maxwidth-600 {
    max-width: 600px;
}

.maxwidth-700 {
    max-width: 700px;
}


/* ====   HERO SECTION   ==== */
.hero-subheading {
    background-color: var(--ASF-white);
    padding: 10px 20px;
    border-radius: 8px;
    width: fit-content;
    margin: 20px auto;
}

.hero-subheading p {
    color: var(--ASF-blue-sky);
    font-family: var(--font-heading);
    font-size: var(--size-32-24);
    line-height: 1.2;
}

.hero-trailers {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.hero-trailers-left {
    flex: 0 1 50%;
}

.hero-trailers-img {
    flex: 0 1 10%;
    position: relative;
}

.hero-trailers-img img {
    max-height: 600px;
    z-index: -1;
    max-width: unset;

}

.hero-trailers-right {
    flex: 0 1 37%;
    z-index: 1;
}

.hero-trailers-contact-form {
    padding: 20px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.25);
}

.title-contact-form-lp-slider {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.4px;
    margin-bottom: 20px;
}

.hero-trailers-contact-form .ff-default .ff-el-form-control {
    border-radius: 10px;
    background: #EEE;
    font-weight: 500;
    border: 0;
}

.hero-trailers-contact-form .ff-default input.ff-el-form-control {
    border-radius: 50px;
}

.hero-trailers-contact-form .ff-default textarea.ff-el-form-control {
    border-radius: 18px;
}

.hero-trailers-contact-form .ff-btn-submit:hover {
    opacity: 1 !important;
}

.hero-trailers-contact-form.hero-trailers-contact-form .ff-default .ff-el-form-control .ff_submit_btn_wrapper {
    margin-bottom: 0 !important;
}

@media (min-width: 981px) {
    .hero-subheading {
        padding: 20px 40px 20px 10px;
        margin: 0 0 20px 0;
    }

    .hero-trailers {
        flex-direction: row;
        align-items: unset;
        text-align: unset;
    }

    .hero-trailers-img img {
        position: absolute;
        left: 50%;
        transform: translateX(-65%);
    }

}

/* ==== HERO SECTION END ==== */

/* ==== KEY ADVANTAGES    ==== */
.key-advantages {
    display: flex;
    flex-direction: column;

    overflow: hidden;
}

.key-advantages-left {
    flex: 0 0 60%;
    background: var(--ASF-blue-navy);
    padding: var(--size-60-40);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.key-advantages-left h2 {
    color: var(--ASF-white);
}

.key-advantages-left p {
    color: var(--ASF-white);
}

.key-advantages-left .accordion-faq .accordion {
    margin: 20px 0;
}

.key-advantages-left .accordion-faq .accordion.active {
    margin-bottom: 0;
}

.key-advantages-left .accordion-faq .accordion:last-child {
    margin-bottom: 0;
}

.key-advantages-left .accordion-faq .accordion:after {
    color: var(--ASF-blue-sky);
}

.key-advantages-left .accordion-faq .accordion h3 {
    color: var(--ASF-blue-sky);
    font-size: var(--size-24-18);
    position: relative;
    padding-left: 20px;
}

.key-advantages-left .accordion-faq .panel p {
    padding-left: 60px;
    padding-right: 30px;
}

.key-advantages-left .accordion.heading svg {
    color: var(--ASF-blue-sky);
}

.key-advantages-left .accordion-faq .separator {
    border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}

.key-advantages-right {
    flex: 0 0 40%;
    overflow: hidden;
    position: relative;
}

.key-advantages-right::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            0deg,
            rgba(25, 44, 62, 0.94) 8.57%,
            rgba(66, 116, 164, 0) 104.97%
    );
    z-index: 2;
    pointer-events: none;
}

.key-advantages-right img {
    height: auto;
    width: 100%;
    object-fit: cover;
    object-position: center 25%;
    max-height: 600px;
}

.et_pb_section_1 .et_pb_row {
    width: 100% !important;
    max-width: 100% !important;
}

@media (min-width: 768px) {
    .et_pb_section_1 .et_pb_row {
        width: 80% !important;
        max-width: 80% !important;
    }

}

@media (min-width: 981px) {
    .key-advantages {
        flex-direction: row;
        gap: 24px;
    }

    .key-advantages-left {
        border-radius: 8px;
    }

    .key-advantages-right {
        border-radius: 8px;
    }

    .key-advantages-right img {
        max-height: unset;
        height: 100%;
        width: auto;
    }
}

/* ==== KEY ADVANTAGES END==== */


/* ==== TRAILER FEATURES     ==== */

.trailer-hotspots {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.trailer-image {
    display: block;
    max-height: 880px;
    margin: 0 auto;
    height: auto;
}

/* blue dot */
.hotspot {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 4px solid #8fd7f3;
    background: var(--ASF-blue-teal);
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px rgba(0, 119, 166, 0.12);
    z-index: 3;
}

/* pulse moved to child span */
.hotspot-pulse {
    position: absolute;
    inset: -26px;
    border-radius: 50%;
    border: 20px solid rgba(0, 119, 166, 0.35);
    animation: hotspotPulse 2s infinite;
    pointer-events: none;
}

.hotspot-card.active:after {
    content: "" !important;
}

@keyframes hotspotPulse {
    0% {
        transform: scale(0.2);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* card */
.hotspot-card {
    position: absolute;
    width: 230px;
    max-width: 50vw;
    background: var(--ASF-white);
    border-radius: 10px;
    padding: var(--size-24-18) var(--size-20-16);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 3;

    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity .25s ease .40s, transform .25s ease .40s;
}

.hotspot-card.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity .15s ease .40s, transform .25s ease .40s;
}

.hotspot-card h3 {
    line-height: 1.2;
    color: var(--ASF-blue-midnight);
    font-size: var(--size-24-18);
    font-weight: 600 !important;
    text-align: center;
}

.hotspot-card p {
    margin: 0;
    font-size: var(--size-16-12);
    line-height: 1.4;
    text-align: center;

}

/*position dots*/
.hotspot-cctv {
    top: 6%;
    left: 50%;
}

.hotspot-mast {
    top: 18%;
    right: 25%;
}

.hotspot-solar {
    top: 53%;
    left: 16%;
}

.hotspot-chassis {
    top: 81%;
    left: 8%;
}

.hotspot-compartment {
    top: 78%;
    right: 23%;
}

.hotspot-mppt {
    top: 83%;
    right: 57%;
}

/* position cards */
#cctv {
    top: 2%;
    left: 2%;
}

#mast {
    top: 8%;
    right: 2%;
}

#solar {
    top: 40%;
    left: 2%;
}

#chassis {
    top: 72%;
    left: 2%;
}

#compartment {
    top: 40%;
    right: 2%;
}

#mppt {
    top: 72%;
    right: 2%;
}
.hotspot::before,
.hotspot::after {
    content: "" !important;
}

@media (min-width: 981px) {
    .hotspot {
        width: 30px;
        height: 30px;
    }

    .hotspot-card {
        width: 240px;
        padding: var(--size-60-40) var(--size-32-24);
    }

    .hotspot::before,
    .hotspot::after {
        content: "" !important;
        position: absolute;
        background: var(--ASF-blue-teal);
        display: block;
    }

    .hotspot::before {
        top: 50%;
        left: 100%;
        width: 0;
        height: 2px;
        transform: translateY(-50%);
        transition: width 0.25s ease;
    }

    .hotspot-compartment::before {
        bottom: 50%;
        left: 50%;
        width: 2px;
        height: 0;
        transform: translateY(-100%);
        transition: height 0.25s ease;
    }

    .hotspot-compartment::after {
        bottom: calc(50% + 220px);
        left: 50%;
        width: 0;
        height: 2px;
    }

    .hotspot.active::before {
        width: 400px;
        transition: width 0.25s ease;
    }

    .hotspot-compartment.active::after {
        width: clamp(30px, calc(36.2vw - 325px), 360px);
        transition: width 0.2s ease 0.25s;
    }

    .hotspot-cctv::before, .hotspot-solar::before, .hotspot-chassis::before {
        left: auto;
        right: 100%;
    }

    .hotspot-cctv.active::before {
        width: clamp(110px, calc(36.2vw - 245px), 450px);;
    }

    .hotspot-solar.active::before {
        width: clamp(0px, calc(29.8vw - 292px), 280px);
    }

    .hotspot-chassis.active::before {
        width: clamp(0px, calc(23.4vw - 230px), 220px);
    }

    .hotspot-mppt.active::before {
        width: clamp(170px, calc(35.1vw - 174px), 500px);
    }

    .hotspot-mast.active::before {
        width: clamp(30px, calc(35.1vw - 314px), 360px);
    }

    .hotspot-compartment.active::before {
        height: 220px;
        width: 2px;
        transition: height 0.25s ease;
    }
}

/* ==== TRAILER FEATURES END ==== */

/* ==== Table Plans     ====*/

.mst-plan-section {
    color: var(--ASF-white);
    padding: 36px 0 28px;
}

.mst-plan-header {
    max-width: 980px;
    margin: 0 auto 40px;
    text-align: center;
}

.mst-plan-header h2 {
    margin: 0 0 22px;
    color: var(--ASF-white);
}

.mst-plan-header p {
    max-width: 860px;
    margin: 0 auto 18px;
    color: var(--ASF-white);
}

.mst-table-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: auto;
    padding-bottom: 12px;
}

.mst-plan-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
    color: var(--ASF-white);
    border: 0 !important;
    font-family: var(--font-heading);
}

.mst-plan-table th,
.mst-plan-table td {
    padding: 16px 14px;
    font-size: var(--size-16-12);
    line-height: 1.35;
    vertical-align: middle;
    text-align: left;
    border-right: 1px solid var(--ASF-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.30);;
}

.mst-plan-table tr td {
    padding: 20px 30px;
}

.mst-plan-table th:last-child,
.mst-plan-table td:last-child {
    border-right: none;
}

.mst-plan-table thead th {
    font-weight: 600;
    color: var(--ASF-white);
    border-bottom: 1px solid var(--ASF-white);
}

.mst-plan-table tbody th {
    font-weight: 600;
    color: var(--ASF-white);
    white-space: nowrap;
}

.mst-plan-table tbody tr:last-child th,
.mst-plan-table tbody tr:last-child td {
    border-bottom: none;
}

.mst-plan-note {
    margin: 34px 0 0;
    text-align: center;
    font-size: var(--size-16-12);
    line-height: 1.5;
    font-style: italic;
    color: #fff;
}

.mst-table-scroll::-webkit-scrollbar {
    height: 8px;
}

.mst-table-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
}

.mst-table-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.65);
    border-radius: 999px;
}

@media (min-width: 981px) {
    .mst-plan-section {
        padding: 48px 0 40px;
    }

    .mst-plan-header {
        margin-bottom: 32px;
    }

    .mst-plan-table th,
    .mst-plan-table td {
        padding: 20px 30px;
    }

}

/* ==== Table Plans END ====*/

/* +++ Swiper Bidirectional +++ */
.slider-header {
    text-align: center;

}

.slider-header h2, .slider-header p {
    max-width: 800px;
    margin: 0 auto;
}

.facility-swiper .swiper-slide {
    display: flex !important;
    justify-content: center;
    align-items: center;
    border-radius: 54px;
    background-color: var(--ASF-blue-teal);
}

.facility-swiper .slide-container-left {
    text-align: center;
    background: var(--ASF-white);
    border-radius: 54px;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.10);
    padding: 20px;
    width: 85%;
    display: flex;
    justify-content: center;
    color: var(--ASF-black);
    font-family: var(--font-heading);
    font-size: var(--size-18-14);
    font-weight: 400;
    line-height: normal;
}

.facility-swiper .slide-container-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;

}

.facility-swiper.swiper {
    overflow: visible !important;
}

.topSwiper {
    margin-bottom: 40px;
}

.botSwiper {
    margin-bottom: 80px;
}

/* --- Swiper Bidirectional END --- */


/* ==== Stacking Cards     ==== */

#page-container {
    overflow: visible !important;
}

:root {
    --stack-gap: 56px;
}

.stack-section {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    gap: 5%;
}

.stack-heading-wrap {
    position: sticky;
    top: 40px;
    padding: 40px 0;
    height: fit-content;
    flex: 0 0 40%;
    text-align: center;
}

.stack {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    gap: 100px;
    align-items: center;
}

.stack > .card {
    position: sticky;
    top: 220px;
    border-radius: 19px;
    background: var(--ASF-white);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.16);
    max-width: 1000px;
    flex-direction: column;
    display: flex;
    will-change: transform;
    /*padding: clamp(20px, 6vw, 80px);*/
    padding: 40px 20px;
    transform: translateY(var(--y, 0px));
    width: 100%;
}

.card-left {

}

.card-left h3 {
    color: var(--ASF-blue-sky);
    font-size: var(--size-32-24);
}

.card-right {

}

.card-right svg {
    position: absolute;
    right: 20px;
    bottom: 20px;
    max-height: 50%;
}

.stack > .card:nth-child(1) {
    --y: 0px;
    z-index: 1;
}

.stack > .card:nth-child(2) {
    --y: 30px;
    z-index: 2;
}

.stack > .card:nth-child(3) {
    --y: 60px;
    z-index: 3;
}

.stack > .card:nth-child(4) {
    --y: 90px;
    z-index: 4;
}

@media (min-width: 981px) {
    .stack-section {
        flex-direction: row;
    }

    .stack-heading-wrap {
        text-align: left;
    }

    .stack > .card {
        padding: 80px 60px;
        top: 140px;
        width: unset;
    }

    .card-left p {
        max-width: 90%;
    }
}

/* ==== Stacking Cards END ==== */


/* ==== Testimonials     ==== */

.asf-testimonials-title {
    margin: 0 0 22px;
    text-align: center;
    color: var(--ASF-white);
    line-height: 1.35;
    font-weight: 400;
}

.asf-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
}

.asf-card {
    background: var(--ASF-gray-light);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 180px;
    height: 100%;
}

.asf-card-quote {
    flex: 1;
    padding: 18px 16px 16px;
}

.asf-card-quote p {
    margin: 0;
    color: var(--ASF-blue-midnight);
    font-size: var(--size-16-12);
    line-height: 1.5;
    margin-top: auto;
}

.asf-card-footer {
    margin-top: auto;
    padding: 12px 16px;
    border-top: 1px solid rgba(42, 51, 69, 0.14);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

.asf-person {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.asf-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.asf-person-meta {
    min-width: 0;
}

.asf-name {
    color: var(--ASF-blue-midnight);
    font-size: var(--size-16-12);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 2px;
}

.asf-role {
    color: var(--ASF-blue-midnight);
    font-size: var(--size-14-10);
    line-height: 1.3;
}

.asf-location {
    color: var(--ASF-blue-midnight);
    font-size: var(--size-14-10);
    line-height: 1.2;
    white-space: nowrap;
    align-self: flex-end;
}

.asf-card svg {
    margin-bottom: 20px;
}

@media (min-width: 768px) {

    .asf-testimonials-title {
        margin-bottom: 28px;
    }

    .asf-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        align-items: stretch;
    }

    .asf-card {
        min-height: 220px;
    }

    .asf-card-quote {
        padding: 22px 20px 18px;
    }


    .asf-avatar {
        width: 34px;
        height: 34px;
    }

}

@media (min-width: 981px) {

    .asf-testimonials-title {
        margin-bottom: 60px;
    }

    .asf-testimonials-grid {
        grid-template-columns: 1.25fr 0.85fr 0.85fr;
        grid-template-areas:
            "large wide wide"
            "large small1 small2";
        gap: 18px;
    }

    .asf-card-large {
        grid-area: large;
        min-height: 340px;
    }

    .asf-card-wide {
        grid-area: wide;
        min-height: 150px;
    }

    .asf-testimonials-grid > .asf-card:nth-of-type(3) {
        grid-area: small1;
        min-height: 170px;
    }

    .asf-testimonials-grid > .asf-card:nth-of-type(4) {
        grid-area: small2;
        min-height: 170px;
    }

    .asf-card-quote {
        padding: 20px 24px 18px;
    }

    .asf-card-footer {
        padding: 14px 24px 12px;
    }
}

/* ==== Testimonials END ==== */


/* ==== CTA     ==== */
.trailers-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.trailers-cta h2 {
    color: var(--ASF-white);
    text-align: center;
    max-width: 1000px;
    margin-bottom: 20px;
}

.trailers-cta p {
    color: var(--ASF-white);
    margin-bottom: 40px;
    text-align: center;
    max-width: 1000px;
}

.trailers-cta a {
    width: fit-content;
}

/* ==== CTA END ==== */

/* ==== FAQ ====     */

.trailers-faq h2 {
    text-align: center;
}

.trailers-faq .accordion.heading {
    background: var(--ASF-gray-light);
    padding: 20px 10px;
    border-radius: 8px;
}
.trailers-faq .accordion.heading h3 {
    font-size: var(--size-25-18);
}
.trailers-faq .panel {
    padding: 0 10px;
}

.trailers-faq .panel p {
    margin-bottom: 40px;
    font-size: 16px;
}

.trailers-faq .accordion-faq .accordion:after {
    font-family: Jost, sans-serif;
    content: "+";
    color: var(--ASF-white);
    background: var(--ASF-blue-sky);
    width: 33px;
    height: 26px;
    padding-bottom: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: none;
    font-weight: 400;
    margin-left: 5px;
    font-size: 30px;
    border-radius: 100px;
    flex-shrink: 0;
}

.trailers-faq .accordion-faq .accordion.active:after {
    content: "-" !important;
}
@media (min-width: 768px) {
    .trailers-faq .accordion.heading {
        padding: 30px 40px;
    }
    .trailers-faq .panel {
        padding-left: 40px;
    }
}
/* ==== FAQ ==== END */