/* Home — View More + Most Demanding Caravan type cards */

@keyframes hpsShine {
    0% { transform: translateX(-130%) skewX(-16deg); }
    100% { transform: translateX(230%) skewX(-16deg); }
}

@keyframes hpsFloatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-0.35rem); }
}

/* ========== View More (home caravans grid) ========== */
.home-view-more-btn,
.home-caravans-grid-section .section-btn .primary-btn {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    min-height: 5.2rem;
    padding: 1.35rem 3.2rem !important;
    margin: 0;
    border: 1px solid rgba(232, 168, 56, 0.35) !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #1a2d4d 0%, #0f1c33 45%, #243b61 100%) !important;
    color: #ffffff !important;
    font-family: "Outfit", sans-serif !important;
    font-size: 1.55rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none !important;
    box-shadow:
        0 0.8rem 2rem rgba(15, 28, 51, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.28s ease,
        background 0.28s ease,
        border-color 0.28s ease,
        color 0.28s ease;
    z-index: 1;
}

.home-view-more-btn::after,
.home-caravans-grid-section .section-btn .primary-btn::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: inherit !important;
    transform: none !important;
    background: linear-gradient(135deg, #c97e4b 0%, #e8a838 55%, #c97e4b 100%) !important;
    opacity: 0;
    transition: opacity 0.3s ease !important;
    z-index: -1 !important;
}

.home-view-more-btn::before,
.home-caravans-grid-section .section-btn .primary-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: translateX(-130%) skewX(-16deg);
    pointer-events: none;
    z-index: 2;
}

.home-view-more-btn span,
.home-caravans-grid-section .section-btn .primary-btn span {
    position: relative;
    z-index: 1;
}

.home-view-more-btn svg,
.home-caravans-grid-section .section-btn .primary-btn svg {
    position: relative;
    z-index: 1;
    stroke: #ffffff !important;
    fill: none !important;
    color: transparent !important;
    transition: transform 0.28s ease !important;
}

.home-view-more-btn:hover,
.home-view-more-btn:focus-visible,
.home-caravans-grid-section .section-btn .primary-btn:hover,
.home-caravans-grid-section .section-btn .primary-btn:focus-visible {
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.25) !important;
    box-shadow:
        0 1.1rem 2.4rem rgba(201, 126, 75, 0.4),
        0 0 0 0.35rem rgba(232, 168, 56, 0.16);
    outline: none;
}

.home-view-more-btn:hover::after,
.home-view-more-btn:focus-visible::after,
.home-caravans-grid-section .section-btn .primary-btn:hover::after,
.home-caravans-grid-section .section-btn .primary-btn:focus-visible::after {
    opacity: 1 !important;
    bottom: 0 !important;
}

.home-view-more-btn:hover::before,
.home-view-more-btn:focus-visible::before,
.home-caravans-grid-section .section-btn .primary-btn:hover::before,
.home-caravans-grid-section .section-btn .primary-btn:focus-visible::before {
    animation: hpsShine 0.7s ease;
}

.home-view-more-btn:hover svg,
.home-caravans-grid-section .section-btn .primary-btn:hover svg {
    transform: translateX(0.45rem) !important;
}

.home-caravans-grid-section .section-btn {
    margin-top: 3.2rem;
}

/* ========== Most Demanding Caravan type cards ========== */
.home-caravan-types {
    --hps-navy: #0f1c33;
    --hps-navy-mid: #1a2d4d;
    --hps-gold: #c97e4b;
    --hps-gold-bright: #e8a838;
    --hps-ink: #1a1d24;
    --hps-muted: #6b7790;
    --hps-fill: #f7f5f2;
}

/* Full label styling shared below via body.page-home-hero .subtitle */

.home-caravan-types .category-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 2rem;
}

.home-caravan-types .category-wrapper,
.home-caravan-types .home-type-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.6rem;
    min-width: 0;
    padding: 2.8rem 1.8rem 2.4rem !important;
    text-decoration: none !important;
    border-radius: 1.6rem !important;
    border: 1px solid rgba(201, 126, 75, 0.22) !important;
    background:
        linear-gradient(165deg, #ffffff 0%, var(--hps-fill) 100%) !important;
    box-shadow:
        0 0.8rem 2rem rgba(15, 28, 51, 0.07),
        0 0.15rem 0.4rem rgba(15, 28, 51, 0.04);
    overflow: hidden;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.3s ease,
        background 0.3s ease;
    z-index: 1;
}

.home-caravan-types .category-wrapper::before,
.home-caravan-types .category-wrapper::after {
    content: "" !important;
    position: absolute !important;
    inset: auto !important;
    border: none !important;
    transform: none !important;
    background: transparent !important;
    z-index: 0 !important;
    pointer-events: none;
}

/* Gold top accent line */
.home-caravan-types .category-wrapper::before {
    top: 0 !important;
    left: 12% !important;
    right: 12% !important;
    height: 3px !important;
    border-radius: 0 0 99px 99px !important;
    background: linear-gradient(90deg, var(--hps-gold), var(--hps-gold-bright), var(--hps-gold)) !important;
    opacity: 0.85;
    transition: left 0.35s ease, right 0.35s ease, opacity 0.35s ease !important;
}

/* Soft glow blob */
.home-caravan-types .category-wrapper::after {
    width: 12rem !important;
    height: 12rem !important;
    top: -4rem !important;
    right: -4rem !important;
    left: auto !important;
    bottom: auto !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(232, 168, 56, 0.22), transparent 70%) !important;
    opacity: 0.7;
    transition: opacity 0.35s ease, transform 0.35s ease !important;
}

.home-caravan-types .category-wrapper:hover,
.home-caravan-types .home-type-card:hover {
    transform: translateY(-0.55rem);
    border-color: rgba(201, 126, 75, 0.5) !important;
    box-shadow:
        0 1.6rem 3.2rem rgba(15, 28, 51, 0.14),
        0 0.4rem 1rem rgba(201, 126, 75, 0.14);
    background:
        linear-gradient(165deg, #ffffff 0%, #fff8ef 55%, #f7f0e6 100%) !important;
}

.home-caravan-types .category-wrapper:hover::before {
    left: 0 !important;
    right: 0 !important;
    opacity: 1;
    border-radius: 1.6rem 1.6rem 0 0 !important;
}

.home-caravan-types .category-wrapper:hover::after {
    opacity: 1;
    transform: scale(1.15);
}

.home-caravan-types .wrapper-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7.2rem;
    height: 7.2rem;
    border-radius: 1.35rem;
    background: linear-gradient(145deg, rgba(15, 28, 51, 0.06), rgba(201, 126, 75, 0.12));
    border: 1px solid rgba(201, 126, 75, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.home-caravan-types .wrapper-icon img {
    width: 3.6rem;
    height: 3.6rem;
    object-fit: contain;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.home-caravan-types .category-wrapper:hover .wrapper-icon {
    background: linear-gradient(145deg, #1a2d4d, #0f1c33);
    border-color: rgba(232, 168, 56, 0.55);
    box-shadow: 0 0.8rem 1.6rem rgba(15, 28, 51, 0.28);
    animation: hpsFloatIcon 1.8s ease-in-out infinite;
}

.home-caravan-types .category-wrapper:hover .wrapper-icon img {
    filter: brightness(0) invert(1);
    transform: scale(1.08);
}

.home-caravan-types .wrapper-content {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
    text-align: center;
}

.home-caravan-types .wrapper-title {
    margin: 0 0 0.65rem !important;
    font-family: "Outfit", sans-serif !important;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    color: var(--hps-ink) !important;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-word;
    transition: color 0.25s ease;
}

.home-caravan-types .category-wrapper:hover .wrapper-title {
    color: var(--hps-navy) !important;
}

.home-caravan-types .wrapper-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.35rem !important;
    padding: 0.4rem 1.05rem;
    border-radius: 999px;
    font-family: "Outfit", sans-serif !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    letter-spacing: 0.03em;
    color: var(--hps-navy) !important;
    background: rgba(15, 28, 51, 0.06);
    border: 1px solid rgba(15, 28, 51, 0.08);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.home-caravan-types .category-wrapper:hover .wrapper-detail {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--hps-gold), var(--hps-gold-bright));
    border-color: transparent;
}

@media (min-width: 1024px) {
    .home-caravan-types .category-section {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 1023px) and (min-width: 768px) {
    .home-caravan-types .category-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.6rem;
    }
}

@media (max-width: 767px) {
    .home-caravan-types .category-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.1rem;
    }

    .home-caravan-types .category-wrapper,
    .home-caravan-types .home-type-card {
        padding: 1.7rem 1rem 1.5rem !important;
        gap: 1.1rem;
        border-radius: 1.3rem !important;
    }

    .home-caravan-types .wrapper-icon {
        width: 5.6rem;
        height: 5.6rem;
        border-radius: 1.1rem;
    }

    .home-caravan-types .wrapper-icon img {
        width: 2.8rem;
        height: 2.8rem;
    }

    .home-caravan-types .wrapper-title {
        font-size: 1.45rem !important;
    }

    .home-caravan-types .wrapper-detail {
        font-size: 1.15rem !important;
        padding: 0.32rem 0.85rem;
    }

    .home-view-more-btn,
    .home-caravans-grid-section .section-btn .primary-btn {
        min-height: 4.6rem;
        padding: 1.15rem 2.4rem !important;
        font-size: 1.35rem !important;
        width: 100%;
        max-width: 28rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-caravan-types .category-wrapper,
    .home-caravan-types .wrapper-icon,
    .home-view-more-btn,
    .home-caravans-grid-section .section-btn .primary-btn,
    .home-view-more-btn::before,
    .home-caravans-grid-section .section-btn .primary-btn::before {
        animation: none !important;
        transition: none !important;
    }

    .home-caravan-types .category-wrapper:hover {
        transform: none;
    }
}

/* Hero Search Now — no blue */
body.page-home-hero .hero .hero-form-item.home-caravan-search .primary-btn {
    background: linear-gradient(135deg, #1a2d4d 0%, #0f1c33 48%, #243b61 100%) !important;
    border-radius: 999px !important;
    border: 1px solid rgba(232, 168, 56, 0.35) !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    box-shadow:
        0 0.8rem 2rem rgba(15, 28, 51, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
}

body.page-home-hero .hero .hero-form-item.home-caravan-search .primary-btn::after {
    background: linear-gradient(135deg, #c97e4b 0%, #e8a838 55%, #c97e4b 100%) !important;
}

body.page-home-hero .hero .hero-form-item.home-caravan-search .primary-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 1rem 2.2rem rgba(201, 126, 75, 0.35),
        0 0 0 0.3rem rgba(232, 168, 56, 0.14);
}

@media (max-width: 991.98px) {
    body.page-home-hero .hero .hero-form-item.home-caravan-search .primary-btn {
        padding: 0.85rem 1.55rem !important;
        font-size: 1.35rem !important;
        min-width: 0 !important;
        width: auto !important;
        gap: 0.55rem !important;
    }
}

@media (max-width: 767.98px) {
    body.page-home-hero .hero .hero-form-item.home-caravan-search .primary-btn {
        padding: 0.75rem 1.35rem !important;
        font-size: 1.25rem !important;
        gap: 0.45rem !important;
    }
}

/* ========== Unified home section labels (match Caravan Type) ========== */
body.page-home-hero {
    --home-navy: #0f1c33;
    --home-navy-mid: #1a2d4d;
    --home-gold: #c97e4b;
    --home-gold-bright: #e8a838;
    --home-ink: #1a1d24;
    --home-muted: #6b7790;
    --home-fill: #f7f5f2;
}

body.page-home-hero .section-title .subtitle,
body.page-home-hero .home-stats-head .subtitle,
body.page-home-hero .featured-section .subtitle,
body.page-home-hero .home-caravan-types .subtitle,
body.page-home-hero .home-caravans-grid-section .subtitle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-bottom: 1.4rem !important;
    padding: 0.55rem 1.55rem !important;
    border-radius: 999px !important;
    border: 1px solid rgba(201, 126, 75, 0.3) !important;
    background: rgba(201, 126, 75, 0.1) !important;
    color: var(--home-gold) !important;
    font-family: "Outfit", sans-serif !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    line-height: 1.3 !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

body.page-home-hero .section-title .heading,
body.page-home-hero .home-stats-head .heading,
body.page-home-hero .featured-section .heading,
body.page-home-hero .home-caravans-grid-section .heading {
    color: var(--home-ink) !important;
}

/* Featured: title black + Our Caravans label same as Caravan Type */
body.page-home-hero .featured-section .subtitle {
    background: rgba(201, 126, 75, 0.1) !important;
    border: 1px solid rgba(201, 126, 75, 0.3) !important;
    color: var(--home-gold) !important;
}

body.page-home-hero .featured-section .heading {
    color: #1a1d24 !important;
}

/* Featured swiper arrows — no blue */
body.page-home-hero .featured-section .featured-swiper-buttons .featured-swiper-button-next svg,
body.page-home-hero .featured-section .featured-swiper-buttons .featured-swiper-button-prev svg,
body.page-home-hero .featured-section .featured-section-item .swiper-buttons .swiper-button-next svg,
body.page-home-hero .featured-section .featured-section-item .swiper-buttons .swiper-button-prev svg {
    color: var(--home-gold) !important;
}

body.page-home-hero .featured-section .featured-swiper-buttons .featured-swiper-button-next:hover,
body.page-home-hero .featured-section .featured-swiper-buttons .featured-swiper-button-prev:hover,
body.page-home-hero .featured-section .featured-section-item .swiper-buttons .swiper-button-next:hover,
body.page-home-hero .featured-section .featured-section-item .swiper-buttons .swiper-button-prev:hover {
    background: linear-gradient(135deg, var(--home-navy-mid), var(--home-navy)) !important;
}

body.page-home-hero .featured-section .featured-swiper-buttons .featured-swiper-button-next:hover svg,
body.page-home-hero .featured-section .featured-swiper-buttons .featured-swiper-button-prev:hover svg,
body.page-home-hero .featured-section .featured-section-item .swiper-buttons .swiper-button-next:hover svg,
body.page-home-hero .featured-section .featured-section-item .swiper-buttons .swiper-button-prev:hover svg {
    color: #ffffff !important;
}

/* ========== Our Caravans filter chips ========== */
body.page-home-hero .home-caravans-grid-section .hotel-categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
}

body.page-home-hero .home-caravans-grid-section .hotel-categories .primary-btn,
body.page-home-hero .home-caravans-grid-section .home-type-chip {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 4.2rem;
    padding: 0.95rem 1.85rem !important;
    margin: 0 !important;
    border-radius: 999px !important;
    border: 1px solid rgba(15, 28, 51, 0.1) !important;
    background: #ffffff !important;
    color: var(--home-navy) !important;
    font-family: "Outfit", sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
    text-decoration: none !important;
    box-shadow: 0 0.35rem 1rem rgba(15, 28, 51, 0.06);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
    z-index: 1;
}

body.page-home-hero .home-caravans-grid-section .hotel-categories .primary-btn::after,
body.page-home-hero .home-caravans-grid-section .home-type-chip::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: inherit !important;
    transform: none !important;
    bottom: 0 !important;
    left: 0 !important;
    background: linear-gradient(135deg, #1a2d4d 0%, #0f1c33 55%, #243b61 100%) !important;
    opacity: 0 !important;
    transition: opacity 0.25s ease !important;
    z-index: -1 !important;
}

body.page-home-hero .home-caravans-grid-section .hotel-categories .primary-btn span,
body.page-home-hero .home-caravans-grid-section .home-type-chip span {
    position: relative;
    z-index: 1;
}

body.page-home-hero .home-caravans-grid-section .hotel-categories .primary-btn:hover,
body.page-home-hero .home-caravans-grid-section .home-type-chip:hover,
body.page-home-hero .home-caravans-grid-section .hotel-categories .primary-btn.is-active,
body.page-home-hero .home-caravans-grid-section .home-type-chip.is-active {
    color: #ffffff !important;
    border-color: transparent !important;
    transform: translateY(-2px);
    box-shadow: 0 0.7rem 1.6rem rgba(15, 28, 51, 0.22);
}

body.page-home-hero .home-caravans-grid-section .hotel-categories .primary-btn:hover::after,
body.page-home-hero .home-caravans-grid-section .home-type-chip:hover::after,
body.page-home-hero .home-caravans-grid-section .hotel-categories .primary-btn.is-active::after,
body.page-home-hero .home-caravans-grid-section .home-type-chip.is-active::after {
    opacity: 1 !important;
}

body.page-home-hero .home-caravans-grid-section .hotel-categories .primary-btn.is-active,
body.page-home-hero .home-caravans-grid-section .home-type-chip.is-active {
    background: linear-gradient(135deg, var(--home-gold) 0%, var(--home-gold-bright) 100%) !important;
    border-color: transparent !important;
    box-shadow: 0 0.7rem 1.6rem rgba(201, 126, 75, 0.32);
}

body.page-home-hero .home-caravans-grid-section .hotel-categories .primary-btn.is-active::after,
body.page-home-hero .home-caravans-grid-section .home-type-chip.is-active::after {
    opacity: 0 !important;
}

/* ========== Our Achievements — premium ========== */
body.page-home-hero .home-stats-section {
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
    padding: 7rem 0;
    background:
        linear-gradient(165deg, #0f1c33 0%, #1a2d4d 48%, #243b61 100%) !important;
}

body.page-home-hero .home-stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(232, 168, 56, 0.22) 0%, transparent 42%),
        radial-gradient(circle at 88% 78%, rgba(201, 126, 75, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.05) 0%, transparent 45%);
    pointer-events: none;
}

body.page-home-hero .home-stats-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 4.8rem 4.8rem;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    pointer-events: none;
    opacity: 0.55;
}

body.page-home-hero .home-stats-section .container {
    position: relative;
    z-index: 1;
}

body.page-home-hero .home-stats-head {
    text-align: center;
    max-width: 68rem;
    margin: 0 auto 4rem;
}

body.page-home-hero .home-stats-head .subtitle {
    background: rgba(232, 168, 56, 0.14) !important;
    border-color: rgba(232, 168, 56, 0.4) !important;
    color: var(--home-gold-bright) !important;
}

body.page-home-hero .home-stats-head .heading {
    color: #ffffff !important;
    font-size: clamp(2.4rem, 2vw + 1.2rem, 3.6rem) !important;
    line-height: 1.25 !important;
    margin: 0 !important;
}

body.page-home-hero .home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.8rem;
}

body.page-home-hero .home-stat-card {
    position: relative;
    padding: 2.6rem 1.6rem 2.2rem;
    border-radius: 1.6rem;
    text-align: center;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(232, 168, 56, 0.22);
    box-shadow:
        0 1.2rem 2.8rem rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
    overflow: hidden;
}

body.page-home-hero .home-stat-card::before {
    content: "";
    position: absolute;
    top: -3rem;
    right: -3rem;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 168, 56, 0.2), transparent 70%);
    pointer-events: none;
}

body.page-home-hero .home-stat-card::after {
    content: "";
    position: absolute;
    inset: auto 1.6rem 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--home-gold), var(--home-gold-bright), var(--home-gold));
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

body.page-home-hero .home-stat-card:hover {
    transform: translateY(-0.7rem);
    border-color: rgba(232, 168, 56, 0.5);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%);
    box-shadow:
        0 1.8rem 3.6rem rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(232, 168, 56, 0.12);
}

body.page-home-hero .home-stat-card:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

body.page-home-hero .home-stat-icon {
    width: 6.4rem;
    height: 6.4rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.35rem;
    background: linear-gradient(145deg, var(--home-gold), var(--home-gold-bright));
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    box-shadow: 0 0.8rem 1.8rem rgba(201, 126, 75, 0.35);
}

body.page-home-hero .home-stat-icon svg {
    width: 2.8rem;
    height: 2.8rem;
}

body.page-home-hero .home-stat-card .counter-text {
    margin: 0;
    color: #ffffff !important;
    font-size: clamp(3.2rem, 2.5vw + 1rem, 5.2rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.03em;
}

body.page-home-hero .home-stat-label {
    margin: 1.15rem 0 0;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Testimonials badge stays consistent with section labels */
body.page-home-hero .cr-reviews__badge {
    gap: 0.55rem;
    padding: 0.55rem 1.55rem !important;
    border: 1px solid rgba(201, 126, 75, 0.3) !important;
    background: rgba(201, 126, 75, 0.1) !important;
    color: var(--home-gold) !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

@media (max-width: 991.98px) {
    body.page-home-hero .home-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    body.page-home-hero .home-stats-section {
        margin-top: 3.5rem;
        padding: 4.5rem 0;
    }

    body.page-home-hero .home-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    body.page-home-hero .home-stat-card {
        padding: 1.5rem 1rem 1.3rem;
    }

    body.page-home-hero .home-stat-icon {
        width: 4.8rem;
        height: 4.8rem;
        margin-bottom: 1rem;
        border-radius: 1.1rem;
    }

    body.page-home-hero .home-stat-icon svg {
        width: 2.2rem;
        height: 2.2rem;
    }

    body.page-home-hero .home-stat-card .counter-text {
        font-size: clamp(2.2rem, 5vw, 3.2rem);
    }

    body.page-home-hero .home-stat-label {
        margin-top: 0.6rem;
        font-size: 1.25rem;
    }

    body.page-home-hero .home-caravans-grid-section .hotel-categories .primary-btn,
    body.page-home-hero .home-caravans-grid-section .home-type-chip {
        min-height: 3.8rem;
        padding: 0.8rem 1.4rem !important;
        font-size: 1.3rem !important;
    }
}
