/* Testimonial Slider - Auto-scrolling infinite loop */
.testimonial-slider {
    width: 100%;
    overflow: hidden;
    margin: 2rem 0;
    position: relative;
    padding: 1rem 0;
    direction: ltr;
}

/* Temporarily disabled fades to debug
.testimonial-slider::before,
.testimonial-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.testimonial-slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(240, 244, 255, 1) 0%, transparent 100%);
}

.testimonial-slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(240, 244, 255, 1) 0%, transparent 100%);
}
*/

.testimonial-slider-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    direction: ltr;
    will-change: transform;
}

/* Hero Testimonial Card - Slider Design */
.hero-testimonial-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(68, 98, 181, 0.12);
    box-shadow: 0 4px 20px rgba(68, 98, 181, 0.08);
    border-radius: 24px;
    padding: 1.25rem 1.75rem;
    min-width: 480px;
    max-width: 520px;
    direction: rtl;
    text-align: right;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hero-testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(68, 98, 181, 0.15);
    transform: translateY(-2px);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-blue);
    flex-shrink: 0;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.testimonial-name {
    font-size: 0.9rem;
    color: var(--accent-blue);
    margin: 0;
    font-weight: 700;
}

/* Enhanced CTA Button */
.btn-primary {
    padding: 1.3rem 3.5rem !important;
    /* Larger padding */
    font-size: 1.25rem !important;
    /* Larger font */
    box-shadow: 0 6px 20px rgba(68, 98, 181, 0.3) !important;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(68, 98, 181, 0.4) !important;
}

@media (max-width: 768px) {
    .testimonial-slider {
        margin: 1.5rem 0;
    }

    .testimonial-slider::before,
    .testimonial-slider::after {
        width: 40px;
    }

    .testimonial-slider-track {
        gap: 1rem;
        animation-duration: 20s;
    }

    .hero-testimonial-card {
        min-width: 320px;
        max-width: 360px;
        padding: 1rem 1.25rem;
        border-radius: 20px;
        gap: 0.75rem;
    }

    .testimonial-avatar {
        width: 48px;
        height: 48px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonial-name {
        font-size: 0.85rem;
    }

    .btn-primary {
        padding: 1rem 2.5rem !important;
        font-size: 1.1rem !important;
        width: 90%;
        text-align: center;
    }
}

/* Who Am I Section Overrides - Wide Layout */
.why-me-section .container {
    max-width: 1400px !important;
    /* Restored wide container */
}

.about-split-layout {
    gap: 5rem !important;
    /* Good spacing */
    align-items: center !important;
}

.profile-photo-wrapper {
    flex: 0 0 40% !important;
    /* Large photo (40%) */
    max-width: none !important;
}

.profile-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
}

.about-content {
    flex: 1;
    /* Text takes approx 60% */
}

/* Hero Tagline - intro above headline (bold, black, prominent) */
.hero-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000 !important;
    margin: 0 0 1.25rem 0;
    text-align: center;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .hero-tagline {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-tagline {
        font-size: 1rem;
    }
}

/* Text Accent - Orange emphasis within headline */
.text-accent {
    color: #ff6b35;
    /* Orange accent matching site theme */
    font-weight: 700;
}

/* Hero title – "ולקוחות." in black (matches headline weight) */
.hero-title-black {
    color: #000 !important;
    font-weight: 900;
}