/* 
   HOME PAGE FULL BLEED SECTIONS 
   Similar to About Page but White Theme 
*/

/* General Home Section Container */
.wix-home-section {
    display: flex;
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    overflow: hidden;
}

/* Common Text Wrapper */
.wix-home-text-wrapper {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 60px;
    background-color: #fff;
    color: #000;
    min-height: 100vh;
}

.wix-home-content {
    max-width: 550px;
}

.wix-home-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #000;
    letter-spacing: 1px;
}

.wix-home-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wix-home-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
}

/* Custom bullet for lists */
.wix-home-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
}

.wix-home-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333;
}

.wix-home-content strong {
    font-weight: 600;
    color: #000;
}

/* Common Image Wrapper */
.wix-home-image-wrapper {
    flex: 0 0 50%;
    position: sticky;
    top: 0;
    height: 100vh;
    align-self: flex-start;
}

.wix-home-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .wix-home-section {
        flex-direction: column;
        min-height: auto;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* Ensure proper order: image first, then text for sections where image is on left */
    .wix-home-section .wix-home-image-wrapper {
        order: 1;
    }

    .wix-home-section .wix-home-text-wrapper {
        order: 2;
    }

    .wix-home-text-wrapper,
    .wix-home-image-wrapper {
        flex: 1 1 auto;
        min-height: auto;
        position: relative;
        height: auto;
        width: 100%;
    }

    .wix-home-text-wrapper {
        padding: 60px 30px;
    }

    .wix-home-content {
        max-width: 100%;
        padding: 0;
    }

    .wix-home-content h2 {
        font-size: 1.8rem;
    }

    .wix-home-content p,
    .wix-home-content li {
        font-size: 1rem;
    }

    .wix-home-image-wrapper {
        min-height: 300px;
        height: 300px;
    }

    .wix-home-image-wrapper img {
        height: 300px;
    }

    /* Pressure section mobile fixes */
    .below-banner-text .pressure-subheadings p {
        font-size: 1.8rem !important;
    }

    .below-banner-text .first-h3 {
        font-size: 1.3rem;
    }

    .below-banner-text .pressure-description {
        font-size: 1rem !important;
    }

    .below-banner-text .focus-statement-inline {
        margin-top: 30px !important;
    }

    .below-banner-text .focus-statement-inline p {
        font-size: 0.95rem !important;
    }

    .below-banner-text .focus-statement-inline strong {
        font-size: 1.05rem !important;
    }
}

@media (max-width: 480px) {
    .wix-home-text-wrapper {
        padding: 40px 20px;
        text-align: center;
    }

    .wix-home-content {
        max-width: 100%;
        text-align: left;
    }

    .wix-home-content h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .wix-home-content p,
    .wix-home-content li {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .wix-home-image-wrapper {
        min-height: 300px;
        height: 300px;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .wix-home-image-wrapper img {
        height: 300px;
        width: 100%;
        object-position: center center;
        object-fit: cover;
    }

    /* Pressure section mobile fixes */
    .below-banner-text {
        text-align: center;
    }

    .below-banner-text .accent-line {
        height: 50px;
        margin-bottom: 12px;
        margin-left: auto;
        margin-right: auto;
    }

    .below-banner-text .pressure-subheadings p {
        font-size: 1.4rem !important;
        line-height: 1.3;
    }

    .below-banner-text .first-h3 {
        font-size: 1.1rem;
    }

    .below-banner-text .pressure-description {
        font-size: 0.95rem !important;
        line-height: 1.6;
    }

    .below-banner-text .focus-statement-inline {
        margin-top: 25px !important;
        padding-top: 20px !important;
    }

    .below-banner-text .focus-statement-inline p {
        font-size: 0.9rem !important;
        line-height: 1.5;
    }

    .below-banner-text .focus-statement-inline strong {
        font-size: 1rem !important;
        display: block;
        margin-top: 5px;
    }
}

/* 
   LINKEDIN STYLE TESTIMONIALS (Overrides styles.css generic ones) 
   To replicate the 'Real Fetch' look 
*/

.testimonials-section {
    background-color: #f3f2ef !important;
    /* LinkedIn Background Gray */
    padding: 80px 0;
    color: #000 !important;
}

.testimonials-section h2 {
    color: #000 !important;
    margin-bottom: 40px;
}

.testimonial-track {
    align-items: stretch;
}

.testimonial-card {
    background-color: #fff !important;
    border-radius: 8px !important;
    padding: 24px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    margin: 15px !important;
}

.testimonial-badge {
    display: none;
    /* Hide generic badge */
}

/* Header with LinkedIn Logo and User Info */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.testimonial-user-info {
    display: flex;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ccc;
    /* Placeholder for user image */
    background-image: url('../extracted-images/wix_portrait.jpg');
    /* Default fallback */
    background-size: cover;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
    color: #000 !important;
    line-height: 1.2;
}

.author-role {
    font-size: 0.8rem !important;
    color: #666 !important;
    line-height: 1.3;
}

.linkedin-brand-icon {
    color: #0077b5;
    width: 24px;
    height: 24px;
}

/* Body Text */
.testimonial-text {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    color: #333 !important;
    font-style: normal !important;
    /* Not italic for LI style */
    flex-grow: 1;
    margin-bottom: 15px !important;
}

.testimonial-readmore {
    color: #666 !important;
    font-size: 0.85rem !important;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
}

.testimonial-readmore:hover {
    color: #0077b5 !important;
    text-decoration: underline;
}

/* Hide old footer elements if we restructure HTML */
.testimonial-footer {
    display: none !important;
}