/* about */
/**
 * About Block Styles
 */

/* HOLAAAA */


.about-section {
    background-color: #3154A5;
    padding: 80px 0;
}

.about-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Left Column */
.about-left {
    flex: 1;
    max-width: 55%;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 56px;
    color: var(--color-white);
    margin: 0 0 20px 0;
    line-height: normal;
}

.about-content {
    font-family: var(--font-content);
    font-size: 16px;
    color: var(--color-white);
    line-height: 32px;
    margin-bottom: 30px;
}

.about-content p {
    margin: 0 0 15px 0;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-ctas {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}

/* Right Column */
.about-right {
    flex: 1;
    max-width: 45%;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    box-shadow: 0 4px 4px 0 rgba(34, 56, 107, 0.45);
}

/* Stats Box */
.about-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(-25%);
    background-color: var(--color-primary-red);
    border-radius: 8px;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.stat-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-description {
    font-family: var(--font-content);
    font-size: 14px;
    color: var(--color-white);
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 991px) {
    .about-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .about-left,
    .about-right {
        max-width: 100%;
    }

    .about-image-wrapper {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-title {
        font-size: 32px;
    }

    .about-ctas {
        flex-direction: column;
        align-items: flex-start;
    }
    .about-ctas .cta-primary {
        width: 100%;
    }

    .about-stats {
        padding: 15px 20px;
        gap: 15px;
    }

    .stat-title {
        font-size: 24px;
    }

    .stat-description {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .about-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        transform: translateY(50%);
    }

    .stat-item {
        justify-content: flex-start;
        text-align: left;
        gap: 10px;
    }
}
.about-section .about-left .about-content p a { color: #EB272D; }
/* coupons */
/**
 * Coupons Block Styles
 */

.coupons-section {
    background-image: url('/wp-content/uploads/2026/02/Frame-1000002222.png');
    background-image: image-set(
        url('/wp-content/uploads/2026/02/Frame-1000002222.png.webp') type('image/webp'),
        url('/wp-content/uploads/2026/02/Frame-1000002222.png') type('image/png')
    );
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0 300px 0;
}

/* Title - Same style as membership/financing */
.coupons-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.coupons-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    color: var(--color-white);
    margin: 0;
    line-height: normal;
    padding: 10px 60px 25px 60px;
    background-image: url('/wp-content/uploads/2026/02/Frame-1000002166.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 558px;
    display: inline-block;
}

/* Coupons Slider */
.coupons__slider {
    position: relative;
    padding: 0 60px;
    margin-bottom: 50px;
}

/* Individual Coupon Item */
.coupon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    padding: 0 15px;
}

/* Top Images */
.coupon-top-image {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: block;
}

.coupon-top-default {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 1;
}

.coupon-top-hover {
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}

.coupon-item:hover .coupon-top-default {
    opacity: 0;
    visibility: hidden;
}

.coupon-item:hover .coupon-top-hover {
    opacity: 1;
    visibility: visible;
}

/* Coupon Content */
.coupon-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    position: relative;
    z-index: 1;
}

.coupon-offer {
    font-family: var(--font-heading);
    font-size: 56px;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 10px;
}

.coupon-title {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--color-white);
    margin: 0 0 15px 0;
    line-height: 1.1;
}

.coupon-expires {
    font-family: var(--font-content);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 20px;
}

.coupon-cta {
    margin-bottom: 15px;
}

.coupon-disclaimer {
    font-family: var(--font-content);
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

/* Bottom Images */
.coupon-bottom-image {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: block;
}

.coupon-bottom-default {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 1;
}

.coupon-bottom-hover {
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}

.coupon-item:hover .coupon-bottom-default {
    opacity: 0;
    visibility: hidden;
}

.coupon-item:hover .coupon-bottom-hover {
    opacity: 1;
    visibility: visible;
}

/* Make coupon-item position relative for absolute positioning */
.coupon-item {
    position: relative;
}

/* Section CTA */
.coupons-cta {
    text-align: center;
}

/* Slick Arrows */
.coupons__slider .slick-prev,
.coupons__slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.coupons__slider .slick-prev:hover,
.coupons__slider .slick-next:hover {
    opacity: 0.7;
}

.coupons__slider .slick-prev {
    left: 0;
}

.coupons__slider .slick-next {
    right: 0;
}

.coupons__slider .slick-prev:before,
.coupons__slider .slick-next:before {
    display: none;
}

.coupons__slider .slick-prev {
    background-image: url('/wp-content/uploads/2026/02/Group-1000002048.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.coupons__slider .slick-next {
    background-image: url('/wp-content/uploads/2026/02/Group-1000002047.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Slick Dots */
.coupons__slider .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
}

.coupons__slider .slick-dots li {
    margin: 0;
    padding: 0;
}

.coupons__slider .slick-dots li button {
    width: 8px;
    height: 8px;
    border-radius: 8px;
    border: 1px solid #CFCECE;
    background: transparent;
    padding: 0;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coupons__slider .slick-dots li button:before {
    display: none;
}

.coupons__slider .slick-dots li.slick-active button {
    background: var(--color-primary-red);
    border: 1px solid var(--color-primary-red);
}

/* Slick Track */
.coupons__slider .slick-track {
    display: flex;
    align-items: stretch;
}

.coupons__slider .slick-slide {
    height: auto;
}



.coupons__slider .slick-list {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 991px) {
    .coupons__slider {
        padding: 0 40px;
    }

    .coupons__slider .slick-prev,
    .coupons__slider .slick-next {
        width: 36px;
        height: 36px;
    }

    .coupons-title {
        font-size: 42px;
        padding: 10px 40px 20px 40px;
        min-width: 100%;
        margin-bottom: 50px;
    }

    .coupon-offer {
        font-size: 42px;
    }

    .coupon-title {
        font-size: 32px;
        
    }
}

@media (max-width: 768px) {
    .coupons-section {
        padding: 60px 0 300px 0;
    }
    .coupons-title-wrapper{
        margin: 0;
    }

    .coupons-title {
        font-size: 36px;
        padding: 8px 30px 15px 30px;
    }

    .coupon-offer {
        font-size: 36px;
    }

    .coupon-title {
        font-size: 28px;
    }

    /* Mobile: Show hover images by default, hide default images */
    .coupon-top-default,
    .coupon-bottom-default {
        opacity: 0;
        visibility: hidden;
        display: none !important;
    }

    .coupon-top-hover,
    .coupon-bottom-hover {
        opacity: 1;
        visibility: visible;
        position: relative;
        left: 0;
        right: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .coupons__slider {
        padding: 0 30px;
    }

    .coupons__slider .slick-prev,
    .coupons__slider .slick-next {
        width: 30px;
        height: 30px;
    }

    .coupons-title {
        font-size: 28px;
    }

    .coupon-offer {
        font-size: 32px;
    }

    .coupon-title {
        font-size: 24px;
    }
}

/* ================================================
   COUPONS EXTENDED GRID (is_extended = true)
   ================================================ */

.coupons__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 30px;
    margin-bottom: 50px;
}

.coupons__grid .coupon-item {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    padding: 0;
}

@media (max-width: 991px) {
    .coupons__grid .coupon-item {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .coupons__grid .coupon-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* financing */
/**
 * Financing Block Styles
 */

.financing-section {
    background: linear-gradient(180deg, rgba(46, 121, 237, 0.80) 23.64%, rgba(41, 71, 133, 0.80) 68.88%);
    padding: 100px 0;
}

/* Main Box - White border, dark blue bg, full width (same as membership) */
.financing-box {
background-color: var(--color-dark-blue);
    border-radius: 12px;
    border: 10px solid var(--color-white);
    padding: 10px;
}

/* Inner Box - Red border (same as membership) */
.financing-box-inner {
    border-radius: 6px;
    border: 2px solid var(--color-primary-red);
    padding: 60px 40px;
    text-align: center;
}

/* Title - Same style as services/membership */
.financing-title-wrapper {
    text-align: center;
}

.financing-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    color: var(--color-white);
    margin: 0;
    line-height: normal;
    padding: 10px 60px 25px 60px;
    background-image: url('/wp-content/uploads/2026/02/Group-1000002165.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 658px;
    display: inline-block;
}

/* Logos Row */
.financing-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.financing-logo {
    width: auto;
}

.financing-plus {
    display: flex;
    align-items: center;
    justify-content: center;
}

.financing-plus svg {
    display: block;
}

/* Content */
.financing-content {
    font-family: var(--font-content);
    font-size: 16px;
    font-weight: 400;
    color: rgba(250, 250, 250, 0.80);
    text-align: center;
    max-width: 833px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.financing-content p {
    margin: 0;
}

/* CTA */
.financing-cta {
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .financing-title {
        font-size: 42px;
        min-width: 100%;
        padding: 10px 40px 20px 40px;
        margin-bottom: 20px;
    }

    .financing-logos {
        gap: 20px;
    }

}

@media (max-width: 768px) {
    .financing-section {
        padding: 80px 0;
    }

    .financing-box-inner {
        padding: 50px 20px;
    }

    .financing-title {
        font-size: 32px;
        padding: 8px 30px 15px 30px;
    }

    .financing-logos {
        flex-wrap: wrap;
        gap: 15px;
    }

}

@media (max-width: 480px) {
    .financing-box {
        border-width: 6px;
    }

    .financing-title {
        font-size: 28px;
    }

    .financing-logos {
        flex-direction: column;
    }
}

/* home-hero */
/**
 * Home Hero Block Styles
 * This CSS file is automatically loaded only when the home-hero block is present on the page.
 * No manual enqueuing required - the per-block CSS system handles it automatically.
 */

.home-hero {
    padding: 80px 0 280px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-image: url('/wp-content/uploads/2026/02/Frame-1000002222.png');
    background-image: image-set(
        url('/wp-content/uploads/2026/02/Frame-1000002222.png.webp') type('image/webp'),
        url('/wp-content/uploads/2026/02/Frame-1000002222.png') type('image/png')
    );
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
    position: relative;
}

/* Mantener padding original en homepage */
body.home .home-hero {
    padding: 80px 0;
}

.home-hero .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left Column */
.home-hero .col-left {
    flex: 1;
    max-width: 50%;
}

.home-hero .reviews-link {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 20px;
}

.home-hero .google-logo {
    height: auto;
    max-height: 40px;
    width: auto;
}

.home-hero .reviews-text {
    font-family: var(--font-content);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
}

.home-hero .hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: normal;
    color: var(--color-white);
    text-align: left;
    margin: 0 0 30px 0;
}

.home-hero .hero-content {
    font-family: var(--font-content);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    text-align: left;
    margin: 0 0 30px 0;
}

/* Right Column */
.home-hero .col-right {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
}

.home-hero .hero-image {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .home-hero .row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .home-hero .col-left,
    .home-hero .col-right {
        max-width: 100%;
    }

    .home-hero .col-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .home-hero .hero-title {
        text-align: center;
    }

    .home-hero .hero-content {
        text-align: center;
    }

    .home-hero .col-right {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding: 40px 0 150px 0;
        min-height: auto;
    }

    body.home .home-hero {
        padding: 40px 0;
    }

    .home-hero .hero-title {
        font-size: 36px;
    }
}
.hero-content a{
	color:#CCCCCC !important;
}
/* logo-grid */
/**
 * Logo Grid Block Styles
 */

.logo-grid {
    position: relative;
}

.logo-grid-inner {
    background-color: var(--color-dark-blue);
    height: 100px;
    padding: 28px 0;
    border-top: 0.5px solid var(--color-white);
    border-bottom: 0.5px solid var(--color-white);
    display: flex;
    align-items: center;
    width: 100%;
}

/* Side Decoratives */
.logo-grid-side {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-grid-side img {
    height: 100%;
    width: auto;
    max-height: 44px;
}

.logo-grid-left {
    padding-left: 20px;
}

.logo-grid-right {
    padding-right: 20px;
}

/* Logo Content */
.logo-grid-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    width: auto;
    object-fit: contain;
}

/* Top Decorative Mask */
.logo-grid-top-mask {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.logo-grid-top-mask .mask-image {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Bottom Decorative Mask */
.logo-grid-bottom-mask {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    z-index: 10;
    pointer-events: none;
}

.logo-grid-bottom-mask .mask-image {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 991px) {
    .logo-grid-content {
        padding: 0 20px;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-grid-inner {
        height: auto;
        min-height: 100px;
    }
}

@media (max-width: 768px) {
    .logo-grid-side {
        display: none;
    }

    .logo-grid-content {
        padding: 0 15px;
    }
}

/* membership */
/**
 * Membership Block Styles
 */

.membership-section {
    background: linear-gradient(180deg, rgba(46, 121, 237, 0.80) 23.64%, rgba(41, 71, 133, 0.80) 68.88%);
    padding: 100px 0;
}

/* Wrapper - Contains box and decorative images */
.membership-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Top Decorative Image - Outside the white box */
.membership-top-image {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
}

/* Main Box - White border, dark blue bg, full width */
.membership-box {
    background-color: var(--color-dark-blue);
    border-radius: 12px;
    border: 10px solid var(--color-white);
    padding: 10px;
}

/* Inner Box - Red border */
.membership-box-inner {
    border-radius: 6px;
    border: 2px solid var(--color-primary-red);
    padding: 60px 40px;
    text-align: center;
}

/* Bottom Decorative Image - Outside the white box */
.membership-bottom-image {
    position: relative;
    z-index: 2;
    margin-top: 12px;
}

/* Title - Same style as services */
.membership-title-wrapper {
    text-align: center;
}

.membership-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    color: var(--color-white);
    margin: 0;
    line-height: normal;
    padding: 10px 60px 25px 60px;
    background-image: url('/wp-content/uploads/2026/02/Frame-1000002166.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 558px;
    display: inline-block;
}

/* Value - Red background */
.membership-value {
    display: inline-block;
    background-color: var(--color-primary-red);
    padding: 10px 30px;
    margin-bottom: 20px;
    margin-top: -17px;
    width: 327px;
}

.membership-value span {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-white);
}

/* Content */
.membership-content {
    font-family: var(--font-content);
    font-size: 16px;
    font-weight: 400;
    color: rgba(250, 250, 250, 0.80);
    text-align: center;
    max-width: 833px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.membership-content p {
    margin: 0;
}

/* Features Grid - 3 columns on desktop */
.membership-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 40px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-text {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-white);
    text-align: left;
}

/* CTA */
.membership-cta {
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .membership-title {
        font-size: 42px;
        min-width: 100%;
        padding: 10px 40px 20px 40px;
        margin-bottom: 20px;
    }
    .membership-value{
        display: none;
    }

    .membership-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .membership-section {
        padding: 80px 0;
    }

    .membership-box-inner {
        padding: 50px 20px;
    }

    .membership-title {
        font-size: 32px;
        padding: 8px 30px 15px 30px;
    }

    .membership-value span {
        font-size: 20px;
    }

    .feature-item {
        justify-content: center;
    }

    .feature-text {
        font-size: 18px;
    }

    .membership-top-image,
    .membership-bottom-image {
        max-width: 80%;
    }

    .membership-top-image {
        margin-bottom: 0px;
    }

    .membership-bottom-image {
        margin-top: 0px;
    }
}

@media (max-width: 480px) {
    .membership-box {
        border-width: 6px;
    }

    .membership-title {
        font-size: 28px;
    }
}

/* reviews */
/**
 * Reviews Block Styles
 */

.reviews-section {
    background: linear-gradient(180deg, #2B7FFF 0%, #142242 100%);
    padding: 120px 0;
}

/* Header */
.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-title {
    font-family: var(--font-heading);
    font-size: 56px;
    color: var(--color-white);
    margin: 0 0 14px 0;
    line-height: normal;
}

.reviews-content {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #CFCECE;
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto;
}

.reviews-content p {
    margin: 0;
}

/* Slider Container */
.reviews__slider {
    position: relative;
    padding: 0 60px;
}

/* Individual Slide */
.reviews__slide {
    padding: 0 15px;
}

.reviews__slide-inner {
    background-color: var(--color-white);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 25px;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 250px;
}

/* Active Slide (Center Mode) */
.reviews__slider .slick-slide.slick-center .reviews__slide-inner {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Slide Header */
.reviews__slide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.reviews__stars img {
    display: block;
    height: auto;
}

.reviews__slide-date {
    font-family: var(--font-content);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark-blue);
}

/* Slide Content */
.reviews__slide-content-wrapper {
    flex: 1;
    margin-bottom: 15px;
}

.reviews__slide-content {
    max-height: 110px;
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.reviews__slide-content p {
    font-family: var(--font-content);
    font-size: 16px;
    font-weight: 400;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    display: inline;
}

.reviews__slide-content.is-expanded {
    max-height: 110px;
    overflow-y: auto;
    display: block;
    -webkit-line-clamp: unset;
}

/* Read More Button - Inline */
.reviews__read-more {
    display: none;
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-primary-red);
    cursor: pointer;
    transition: color 0.3s ease;
}

.reviews__read-more:hover {
    color: var(--color-dark-blue);
}

.reviews__read-more.is-visible {
    display: inline;
}

/* Slide Footer */
.reviews__slide-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

.reviews__slide-name {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-dark-blue);
    text-transform: uppercase;
}

.reviews__slide-footer svg {
    width: 32px;
    height: 32px;
}

/* Slick Arrows */
.reviews__slider .slick-prev,
.reviews__slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.reviews__slider .slick-prev:hover,
.reviews__slider .slick-next:hover {
    opacity: 0.7;
}

.reviews__slider .slick-prev {
    left: 0;
}

.reviews__slider .slick-next {
    right: 0;
}

.reviews__slider .slick-prev:before,
.reviews__slider .slick-next:before {
    display: none;
}

.reviews__slider .slick-prev {
    background-image: url('/wp-content/uploads/2026/02/next.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%) rotate(180deg);
}

.reviews__slider .slick-next {
    background-image: url('/wp-content/uploads/2026/02/next.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Slick Dots */
.reviews__slider .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
}

.reviews__slider .slick-dots li {
    margin: 0;
    padding: 0;
}

.reviews__slider .slick-dots li button {
    width: 8px;
    height: 8px;
    border-radius: 8px;
    border: 1px solid #CFCECE;
    background: transparent;
    padding: 0;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews__slider .slick-dots li button:before {
    display: none;
}

.reviews__slider .slick-dots li.slick-active button {
    background: var(--color-primary-red);
    border: 1px solid var(--color-primary-red);
}

/* Slick Track - Equal Heights */
.reviews__slider .slick-track {
    display: flex;
    align-items: stretch;
}

.reviews__slider .slick-slide {
    height: auto;
}

.reviews__slider .slick-slide > div {
    height: 100%;
}

.reviews__slider .slick-list {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 992px) {
    .reviews__slider {
        padding: 0 40px;
    }

    .reviews__slider .slick-prev,
    .reviews__slider .slick-next {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-title {
        font-size: 40px;
    }

    .reviews-content {
        font-size: 18px;
    }

    .reviews-header {
        margin-bottom: 30px;
    }

    .reviews__slide-name {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .reviews__slider {
        padding: 0 30px;
    }

    .reviews__slider .slick-prev,
    .reviews__slider .slick-next {
        width: 30px;
        height: 30px;
    }

    .reviews__slide-inner {
        padding: 20px;
        min-height: 220px;
    }
}

/* ================================================
   REVIEWS EXTENDED GRID (is_extended = true)
   ================================================ */

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.reviews__grid-item {
    display: flex;
    flex-direction: column;
}

.reviews__grid .reviews__slide-inner {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
}

@media (max-width: 768px) {
    .reviews__grid {
        grid-template-columns: 1fr;
    }
}

/* sections-wrapper-end */
/**
 * Sections Wrapper End - Styles
 * No styles needed, this block only closes the wrapper div
 */

/* sections-wrapper-start */
/**
 * Sections Wrapper Start - Styles
 * This wrapper contains: about, membership, service-areas, coupons, financing
 */

.main-sections-wrapper {
    background-image: url('/wp-content/uploads/2026/03/Frame-1000002223-1-1.svg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    margin-top: -230px;
    padding-top: 200px;
    position: relative;

}

/* Remove individual backgrounds from wrapped sections */
.main-sections-wrapper .about-section {
    background-color: transparent;
    background-image: none;
}

.main-sections-wrapper .left-image-stats-section {
    background-color: transparent;
    background-image: none;
}

.main-sections-wrapper .content-logos-slider-section {
    background-color: transparent;
    background-image: none;
    padding-bottom: 300px;
}

.main-sections-wrapper .services-section {
    background-color: transparent;
    background-image: none;
    padding-top: 0;
    margin-top: -150px;
    padding-bottom: 0;
}

.main-sections-wrapper .family-owned-section {
    background-color: transparent;
    background-image: none;
}

.main-sections-wrapper .membership-section {
    background: transparent;
    padding: 0;
}

body.home .main-sections-wrapper .services-section {
    background-color: transparent;
}

.main-sections-wrapper .service-areas-section {
    background-color: transparent;
    padding-bottom: 350px !important;
}

.main-sections-wrapper .coupons-section {
    background-image: none;
    background-color: transparent;
    padding-top: 0;
}

.main-sections-wrapper:last-child {
    padding-top: 0;
}

.main-sections-wrapper .financing-section {
    background: transparent;
    padding: 0;
}

.main-sections-wrapper .services-benefits-section {
    background: transparent;
}

.main-sections-wrapper .reviews-section {
    background: transparent;
}

@media (max-width: 992px) {
    .main-sections-wrapper {
        padding-top: 70px;
    }

    .main-sections-wrapper .membership-section {
        padding-top: 70px;
    }

    .main-sections-wrapper .left-image-stats-section {
        padding-top: 60px;
    }

    /* Restore reviews-section background on mobile */
    .main-sections-wrapper .reviews-section {
        background: linear-gradient(180deg, #2B7FFF 0%, #142242 100%);
    }
}

/* service-areas */
/**
 * Service Areas Block Styles
 */

.service-areas-section {
    background-color: var(--color-dark-blue);
    padding: 80px 0;
}

/* Title - Same style as other sections */
.service-areas-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.service-areas-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    color: var(--color-white);
    margin: 0;
    line-height: normal;
}

/* Maps Row */
.service-areas-maps {
    display: flex;
    gap: 60px;
}

.service-areas-col {
    flex: 1;
}

/* MapLibre Map */
#map-homepage1,
#map-homepage2 {
    width: 100%;
    height: 462px;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

/* Areas List - 2 columns grid */
.service-areas-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 30px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.area-item:hover {
    opacity: 0.8;
}

.area-icon {
    flex-shrink: 0;
    width: 20px;
    height: auto;
}

.area-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--color-white);
}

/* Responsive */
@media (max-width: 991px) {
    .service-areas-maps {
        flex-direction: column;
        gap: 50px;
    }

    .service-areas-title {
        font-size: 42px;
    }

    .area-text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .service-areas-section {
        padding: 60px 0;
    }

    .service-areas-title {
        font-size: 36px;
    }

    .service-areas-list {
        gap: 12px;
    }

    .area-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .service-areas-title {
        font-size: 28px;
    }
}

/* services */
/**
 * Services Block Styles
 */

.services-section {
    background-image: url('/wp-content/uploads/2026/02/Frame-1000002222.png');
    background-image: image-set(
        url('/wp-content/uploads/2026/02/Frame-1000002222.png.webp') type('image/webp'),
        url('/wp-content/uploads/2026/02/Frame-1000002222.png') type('image/png')
    );
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 300px 0;
}

/* Title with banner background */
.services-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.services-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    color: var(--color-white);
    margin: 0;
    line-height: normal;
    padding: 10px 60px 25px 60px;
    background-image: url('/wp-content/uploads/2026/02/Frame-1000002166.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 558px;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    row-gap: 60px;
    margin-bottom: 50px;
}

/* Individual Service Item */
.service-item {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    height: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Top Image - Hidden by default, shown on hover */
.service-top-image {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    max-width: 100%;
    height: auto;
}

.service-item:hover .service-top-image {
    opacity: 1;
    visibility: visible;
}

/* Service Link */
.service-link {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    color: var(--color-white);
    text-decoration: none;
    text-align: center;
    padding: 30px 0;
    transition: color 0.3s ease;
    display: block;
}

.service-item:hover .service-link {
    color: var(--color-white);
}

/* Bottom Images */
.service-bottom-image {
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-bottom-default {
    opacity: 1;
    visibility: visible;
}

.service-bottom-hover {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
}

.service-item:hover .service-bottom-default {
    opacity: 0;
    visibility: hidden;
}

.service-item:hover .service-bottom-hover {
    opacity: 1;
    visibility: visible;
}

/* CTAs */
.services-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

/* Responsive */
@media (max-width: 991px) {
    .service-item {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .services-title {
        font-size: 42px;
        padding: 15px 40px;
    }

    .service-link {
        font-size: 32px;
    }

    /* Disable hover effects and animations on mobile */
    .service-item,
    .service-top-image,
    .service-bottom-image,
    .service-link {
        transition: none;
    }

    /* Always show default state, never hover state */
    .service-item:hover .service-top-image,
    .service-item:active .service-top-image,
    .service-item:focus .service-top-image {
        opacity: 0;
        visibility: hidden;
    }

    .service-item:hover .service-bottom-default,
    .service-item:active .service-bottom-default,
    .service-item:focus .service-bottom-default {
        opacity: 1;
        visibility: visible;
    }

    .service-item:hover .service-bottom-hover,
    .service-item:active .service-bottom-hover,
    .service-item:focus .service-bottom-hover {
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0 300px 0;
    }

    .service-item {
        flex: 0 0 100%;
        max-width: 100%;
        height: 280px;
    }

    .services-title {
        font-size: 36px;
        padding: 12px 30px;
    }

    .service-link {
        font-size: 28px;
        padding: 20px 0;
    }

    .services-ctas {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 28px;
        min-width: auto;
    }

    .service-link {
        font-size: 40px;
    }

    .service-item {
        height: 250px;
    }
}

