.elementor-5693 .elementor-element.elementor-element-6aace4b{--display:flex;}.elementor-5693 .elementor-element.elementor-element-a38c075{width:100%;max-width:100%;}body.elementor-page-5693:not(.elementor-motion-effects-element-type-background), body.elementor-page-5693 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}/* Start custom CSS for html, class: .elementor-element-a38c075 *//* ============================================
   EVOLBODY RESULTS PAGE - Coach Filter CSS
   ============================================ */

/* Filter Section */
.evol-results-filter-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 0;
}

.evol-results-filter-container {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.evol-results-filter-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--evol-text-muted);
    white-space: nowrap;
}

.evol-results-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.evol-results-filter-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1.5px solid var(--evol-border-card);
    color: var(--evol-text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.evol-results-filter-btn:hover {
    border-color: var(--evol-primary-gold);
    color: var(--evol-primary-gold);
}

.evol-results-filter-btn.evol-active {
    background: linear-gradient(135deg, var(--evol-primary-gold) 0%, var(--evol-primary-gold-hover) 100%);
    border-color: var(--evol-primary-gold);
    color: var(--evol-bg-primary);
}

.evol-results-filter-count {
    margin-top: 14px;
    font-size: 13px;
    color: var(--evol-text-muted);
}

/* Coach name in bento overlay */
.evol-bento-coach {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--evol-primary-gold);
    margin-top: 6px;
}

/* No Results Empty State */
.evol-results-empty {
    text-align: center;
    padding: 60px 20px;
}

.evol-results-empty p {
    font-size: 16px;
    color: var(--evol-text-secondary);
    margin-bottom: 20px;
}

/* Bento item transition for filtering */
.evol-bento-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.evol-bento-grid .evol-bento-item {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.evol-bento-grid .evol-bento-item[style*="opacity: 0"] {
    opacity: 0 !important;
    transform: translateY(20px) !important;
}
.evol-stats-bar .evol-stat-item {
    opacity: 1 !important;
    transform: none !important;
}


/* ============================================
   BENTO GRID LAYOUT - Add below existing CSS
   ============================================ */
 
/* Container */
.evol-bento-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}
 
/* Base Grid */
.evol-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}
 
/* Grid Layout: Large item on LEFT */
.evol-bento-grid--left .evol-bento-item:nth-child(1) {
    grid-column: 1;
    grid-row: span 2;
}
.evol-bento-grid--left .evol-bento-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}
.evol-bento-grid--left .evol-bento-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}
.evol-bento-grid--left .evol-bento-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}
.evol-bento-grid--left .evol-bento-item:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}
 
/* Grid Layout: Large item on RIGHT */
.evol-bento-grid--right .evol-bento-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}
.evol-bento-grid--right .evol-bento-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}
.evol-bento-grid--right .evol-bento-item:nth-child(3) {
    grid-column: 3;
    grid-row: span 2;
}
.evol-bento-grid--right .evol-bento-item:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}
.evol-bento-grid--right .evol-bento-item:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}
 
 
/* ============================================
   PARTIAL GRIDS (When filtering shows < 5 items)
   ============================================ */
 
/* 1 item - centered */
.evol-bento-grid--partial[data-count="1"] {
    grid-template-columns: 1fr;
    grid-template-rows: 400px;
}
.evol-bento-grid--partial[data-count="1"] .evol-bento-item {
    grid-column: 1 !important;
    grid-row: 1 !important;
    max-width: 600px;
    margin: 0 auto;
}
 
/* 2 items - side by side */
.evol-bento-grid--partial[data-count="2"] {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 350px;
}
.evol-bento-grid--partial[data-count="2"] .evol-bento-item:nth-child(1) {
    grid-column: 1 !important;
    grid-row: 1 !important;
}
.evol-bento-grid--partial[data-count="2"] .evol-bento-item:nth-child(2) {
    grid-column: 2 !important;
    grid-row: 1 !important;
}
 
/* 3 items - 1 large + 2 stacked */
.evol-bento-grid--partial[data-count="3"] {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 200px);
}
.evol-bento-grid--partial[data-count="3"] .evol-bento-item:nth-child(1) {
    grid-column: 1 !important;
    grid-row: span 2 !important;
}
.evol-bento-grid--partial[data-count="3"] .evol-bento-item:nth-child(2) {
    grid-column: 2 !important;
    grid-row: 1 !important;
}
.evol-bento-grid--partial[data-count="3"] .evol-bento-item:nth-child(3) {
    grid-column: 2 !important;
    grid-row: 2 !important;
}
 
/* 4 items - 2x2 grid */
.evol-bento-grid--partial[data-count="4"] {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 250px);
}
.evol-bento-grid--partial[data-count="4"] .evol-bento-item:nth-child(1) {
    grid-column: 1 !important;
    grid-row: 1 !important;
}
.evol-bento-grid--partial[data-count="4"] .evol-bento-item:nth-child(2) {
    grid-column: 2 !important;
    grid-row: 1 !important;
}
.evol-bento-grid--partial[data-count="4"] .evol-bento-item:nth-child(3) {
    grid-column: 1 !important;
    grid-row: 2 !important;
}
.evol-bento-grid--partial[data-count="4"] .evol-bento-item:nth-child(4) {
    grid-column: 2 !important;
    grid-row: 2 !important;
}
 
 
/* ============================================
   BENTO ITEM STYLES
   ============================================ */
 
.evol-bento-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--evol-bg-secondary, #1a1a1a);
}
 
.evol-bento-content {
    width: 100%;
    height: 100%;
}
 
.evol-bento-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
 
.evol-bento-item:hover .evol-bento-content img {
    transform: scale(1.05);
}
 
/* Overlay */
.evol-bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
 
.evol-bento-item:hover .evol-bento-overlay {
    transform: translateY(0);
}
 
.evol-bento-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
 
.evol-bento-stat {
    font-size: 14px;
    color: var(--evol-primary-gold, #FAF1B2);
    margin-bottom: 4px;
}

/* ============================================
   EVOLBODY — Coach Profile Card (Results Page)
   ============================================ */

.evol-results-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    text-align: center;
}

.evol-results-section-header .evol-section-title-block {
    flex: 1 1 auto;
    width: 100%;
    text-align: center;
}

.evol-results-section-header .evol-section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: var(--evol-text-primary);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin: 0 0 8px;
}

.evol-results-section-header .evol-section-subtitle {
    font-size: 15px;
    color: var(--evol-text-secondary);
    margin: 0;
    line-height: 1.6;
}

.evol-coach-profile-card {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--evol-bg-secondary) 0%, var(--evol-bg-tertiary) 100%);
    border: 1px solid var(--evol-border-card);
    border-radius: 16px;
    padding: 18px 32px 18px 20px;
    position: relative;
    overflow: hidden;
    min-width: 360px;
    width: auto;
    animation: evolCoachCardIn 0.45s cubic-bezier(0.34, 1.3, 0.64, 1) both;
    transform-origin: center center;
}

.evol-coach-profile-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(180deg, var(--evol-primary-gold) 0%, var(--evol-primary-gold-hover) 100%);
}

.evol-coach-profile-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(250,241,178,0.05) 50%, transparent 70%);
    background-size: 200% 100%;
    animation: evolCardShimmer 1.8s ease-out 0.3s both;
    pointer-events: none;
}

.evol-coach-profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--evol-bg-tertiary);
    border: 2px solid var(--evol-border-subtle);
    overflow: hidden;
    flex-shrink: 0;
}

.evol-coach-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.evol-coach-profile-avatar-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--evol-bg-tertiary) 0%, #333 100%);
    color: var(--evol-primary-gold);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.evol-coach-profile-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.evol-coach-profile-eyebrow {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--evol-primary-gold);
    line-height: 1;
}

.evol-coach-profile-name {
    font-size: 22px;
    font-weight: 900;
    color: var(--evol-text-primary);
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.evol-coach-profile-location {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
    font-size: 12px;
    font-weight: 500;
    color: var(--evol-text-secondary);
    line-height: 1;
}

.evol-coach-profile-location svg {
    width: 11px;
    height: 11px;
    fill: var(--evol-primary-gold);
    flex-shrink: 0;
    opacity: 0.85;
}

.evol-coach-profile-card.evol-hidden,
.evol-coach-profile-card[hidden] {
    display: none !important;
}

@keyframes evolCoachCardIn {
    from { opacity: 0; transform: scale(0.85) translateX(20px); }
    to   { opacity: 1; transform: scale(1)    translateX(0);    }
}

@keyframes evolCardShimmer {
    from { background-position: 200% 0; }
    to   { background-position: -200% 0; }
}

 
/* Responsive */
@media (max-width: 768px) {
    .evol-results-filter-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .evol-results-filters {
        gap: 6px;
    }

    .evol-results-filter-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    .evol-bento-grid,
    .evol-bento-grid--left,
    .evol-bento-grid--right,
    .evol-bento-grid--partial {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
    }
 
    .evol-bento-grid .evol-bento-item,
    .evol-bento-grid--partial .evol-bento-item {
        grid-column: 1 !important;
        grid-row: auto !important;
        height: 300px;
        max-width: 100% !important;
    }
 
    /* Show overlay on mobile (no hover) */
    .evol-bento-overlay {
        transform: translateY(0);
    }
    .evol-results-section-header {
        flex-direction: column;
        gap: 24px;
    }
    .evol-coach-profile-card {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS *//* ============================================
   EVOLBODY Results Page Styles
   Namespaced with evol- prefix
   ============================================ */

/* Hero Section - Results Page */
.evol-results-hero {
    height: 70vh;
    min-height: 500px;
    background: 
        linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.85)),
        url('https://evolbodywellness.com/wp-content/uploads/2026/02/IMG_1593-scaled.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.evol-results-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(250, 241, 178, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(250, 241, 178, 0.1) 0%, transparent 50%);
    animation: evolHeroGlow 6s ease-in-out infinite;
}

@keyframes evolHeroGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.evol-results-hero .evol-hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Force all results page sections to full width */
.evol-stats-bar,
.evol-gallery-section,
.evol-bento-section,
.evol-carousel-section,
.evol-results-cta {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
}

/* Stats Bar */
.evol-stats-bar {
    background: linear-gradient(135deg, var(--evol-bg-tertiary) 0%, var(--evol-bg-secondary) 100%);
    padding: 40px;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    border-top: 1px solid var(--evol-border-subtle);
    border-bottom: 1px solid var(--evol-border-subtle);
}

.evol-stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.evol-stat-item.evol-visible {
    animation: evolFadeInUp 0.6s ease-out forwards;
}

.evol-stat-item:nth-child(1) { animation-delay: 0s; }
.evol-stat-item:nth-child(2) { animation-delay: 0.1s; }
.evol-stat-item:nth-child(3) { animation-delay: 0.2s; }
.evol-stat-item:nth-child(4) { animation-delay: 0.3s; }

.evol-stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--evol-primary-gold);
    margin-bottom: 5px;
    line-height: 1;
}

.evol-stat-label {
    font-size: 14px;
    color: var(--evol-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery Section */
.evol-gallery-section {
    padding: 100px 40px;
    background: var(--evol-bg-primary);
}

/* Transformation Cards Grid - 3 cards */
.evol-transformation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}


/* Blur overlay covers right half */
.evol-blur-overlay {
    position: absolute;
    left: 50%;
    width: 50%;
    filter: blur(20px);
}

/* Slides right on hover */
.evol-transformation-card:hover .evol-blur-overlay {
    transform: translateX(100%);
}

/* Slider also moves right */
.evol-transformation-card:hover .evol-slider-line {
    left: 100%;
}


.evol-transformation-card {
    background: linear-gradient(135deg, var(--evol-bg-secondary) 0%, var(--evol-bg-tertiary) 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--evol-border-card);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.evol-transformation-card.evol-visible {
    animation: evolFadeInUp 0.6s ease-out forwards;
}

.evol-transformation-card:nth-child(1) { animation-delay: 0s; }
.evol-transformation-card:nth-child(2) { animation-delay: 0.15s; }
.evol-transformation-card:nth-child(3) { animation-delay: 0.3s; }

.evol-transformation-card:hover {
    transform: translateY(-8px);
    border-color: var(--evol-primary-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Before/After Slider - Slides LEFT to reveal AFTER photo */
.evol-before-after {
    position: relative;
    height: 280px;
    background: var(--evol-bg-tertiary);
    overflow: hidden;
}

.evol-before-image,
.evol-after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--evol-text-disabled);
    font-weight: 600;
    font-size: 14px;
    overflow: hidden;
}

.evol-before-image img,
.evol-after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* AFTER image is underneath, BEFORE image is on top with clip-path */
.evol-after-image {
    z-index: 1;
}

.evol-before-image {
    z-index: 2;
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.5s ease;
}

/* On hover, clip the BEFORE image from the left to reveal AFTER */
.evol-transformation-card:hover .evol-before-image {
    clip-path: inset(0 0 0 100%);
}

.evol-before-label,
.evol-after-label {
    position: absolute;
    top: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--evol-primary-gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.evol-before-label {
    left: 15px;
}

.evol-after-label {
    right: 15px;
}

/* Slider line moves LEFT on hover */
.evol-slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: var(--evol-primary-gold);
    transform: translateX(-50%);
    transition: left 0.5s ease;
    z-index: 5;
    box-shadow: 0 0 15px rgba(250, 241, 178, 0.6);
}

.evol-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: var(--evol-primary-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--evol-bg-secondary);
    box-shadow: 0 4px 15px rgba(250, 241, 178, 0.4);
    transition: all 0.3s ease;
}

/* Slider moves to LEFT edge on hover */
.evol-transformation-card:hover .evol-slider-line {
    left: 0%;
}

.evol-transformation-card:hover .evol-slider-handle {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
}

/* Card Info */
.evol-card-info {
    padding: 20px;
}

.evol-client-name {
    font-size: 18px;
    font-weight: 900;
    color: var(--evol-primary-gold);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.evol-transformation-stats {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.evol-stat-badge {
    background: rgba(250, 241, 178, 0.1);
    border: 1px solid rgba(250, 241, 178, 0.3);
    color: var(--evol-primary-gold);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.evol-client-testimonial {
    font-size: 13px;
    color: var(--evol-text-secondary);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 10px;
}

.evol-trainer-credit {
    font-size: 11px;
    color: var(--evol-text-disabled);
}

.evol-trainer-credit strong {
    color: var(--evol-primary-gold);
}

/* Bento Grid Section - Alternating Layout */
.evol-bento-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--evol-bg-secondary) 0%, var(--evol-bg-primary) 100%);
}

/* Alternating Bento Grid */
.evol-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.evol-bento-item {
    background: linear-gradient(135deg, var(--evol-bg-tertiary) 0%, var(--evol-bg-secondary) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--evol-border-card);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.evol-bento-item.evol-visible {
    animation: evolFadeInUp 0.6s ease-out forwards;
}

.evol-bento-item:nth-child(1) { animation-delay: 0s; }
.evol-bento-item:nth-child(2) { animation-delay: 0.1s; }
.evol-bento-item:nth-child(3) { animation-delay: 0.15s; }
.evol-bento-item:nth-child(4) { animation-delay: 0.2s; }
.evol-bento-item:nth-child(5) { animation-delay: 0.25s; }

.evol-bento-item:hover {
    transform: scale(1.03);
    border-color: var(--evol-primary-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

/* Alternating layout pattern:
   Item 1: Large (spans 2 rows on left)
   Items 2-5: Small (2x2 grid on right) */
.evol-bento-item:nth-child(1) {
    grid-column: 1;
    grid-row: span 2;
}

.evol-bento-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.evol-bento-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.evol-bento-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.evol-bento-item:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

.evol-bento-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333 0%, #444 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--evol-text-disabled);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.evol-bento-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.evol-bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 25px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.evol-bento-item:hover .evol-bento-overlay {
    transform: translateY(0);
}

.evol-bento-name {
    font-size: 18px;
    font-weight: 900;
    color: var(--evol-primary-gold);
    margin-bottom: 5px;
}

.evol-bento-stat {
    font-size: 13px;
    color: var(--evol-text-secondary);
}

/* Carousel Section */
.evol-carousel-section {
    padding: 100px 40px;
    background: var(--evol-bg-primary);
    overflow: hidden;
}

.evol-carousel-container {
    max-width: 1200px;
    margin: 60px auto 0;
    position: relative;
}

.evol-carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--evol-primary-gold) var(--evol-bg-secondary);
}

.evol-carousel-track::-webkit-scrollbar {
    height: 8px;
}

.evol-carousel-track::-webkit-scrollbar-track {
    background: var(--evol-bg-secondary);
    border-radius: 10px;
}

.evol-carousel-track::-webkit-scrollbar-thumb {
    background: var(--evol-primary-gold);
    border-radius: 10px;
}

.evol-carousel-card {
    min-width: 320px;
    background: linear-gradient(135deg, var(--evol-bg-tertiary) 0%, var(--evol-bg-secondary) 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--evol-border-card);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.evol-carousel-card:hover {
    border-color: var(--evol-primary-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.evol-carousel-image {
    height: 240px;
    background: linear-gradient(135deg, #333 0%, #444 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--evol-text-disabled);
    font-weight: 600;
    overflow: hidden;
}

.evol-carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.evol-carousel-info {
    padding: 20px;
}

.evol-carousel-name {
    font-size: 18px;
    font-weight: 900;
    color: var(--evol-primary-gold);
    margin-bottom: 8px;
}

.evol-carousel-result {
    font-size: 13px;
    color: var(--evol-text-secondary);
    margin-bottom: 8px;
}

.evol-carousel-quote {
    font-size: 12px;
    color: var(--evol-text-muted);
    font-style: italic;
}

/* Results CTA Section */
.evol-results-cta {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--evol-bg-secondary) 0%, var(--evol-bg-tertiary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.evol-results-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(250, 241, 178, 0.15) 0%, transparent 70%);
}

/* ============================================
   Responsive Styles - Results Page
   ============================================ */

@media (max-width: 1024px) {
    .evol-transformation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .evol-transformation-card:nth-child(3) {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .evol-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
    }
    
    .evol-bento-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .evol-bento-item:nth-child(2),
    .evol-bento-item:nth-child(3),
    .evol-bento-item:nth-child(4),
    .evol-bento-item:nth-child(5) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .evol-results-hero {
        margin-top: 120px;
        height: 60vh;
    }
    
    .evol-stats-bar {
        gap: 30px;
        padding: 30px 20px;
    }
    
    .evol-stat-number {
        font-size: 36px;
    }
    
    .evol-transformation-grid {
        grid-template-columns: 1fr;
    }
    
    .evol-transformation-card:nth-child(3) {
        grid-column: span 1;
        max-width: none;
    }
    
    .evol-bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 250px);
    }
    
    .evol-bento-item:nth-child(1),
    .evol-bento-item:nth-child(2),
    .evol-bento-item:nth-child(3),
    .evol-bento-item:nth-child(4),
    .evol-bento-item:nth-child(5) {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    .evol-carousel-card {
        min-width: 280px;
    }
    
    .evol-gallery-section,
    .evol-bento-section,
    .evol-carousel-section,
    .evol-results-cta {
        padding: 60px 20px;
    }
}/* End custom CSS */