/* ===== TESTIMONIALS PAGE SPECIFIC STYLES ===== */

/* Navigation Enhancement */
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--color-white-soft);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color var(--transition-normal);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-white), var(--color-gold));
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, var(--color-white), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ===== TESTIMONIALS HERO ===== */
.testimonials-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-dark-green) 0%, var(--color-dark) 100%);
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-content-testimonials {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-badge .line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), var(--color-gold), rgba(255,255,255,0.6), transparent);
}

.hero-badge .text {
    background: linear-gradient(135deg, var(--color-white), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--color-white), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line {
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-white-soft);
    margin-bottom: 2rem;
}

/* Hero Decoration */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    animation: float 10s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation: float 15s ease-in-out infinite reverse;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite;
}

/* ===== VALUE PROPOSITIONS SECTION ===== */
.value-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-dark-green) 50%, var(--color-dark) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header-value {
    text-align: center;
    margin-bottom: 4rem;
}

/* Main Title - 35% bigger than normal */
.value-main-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-white), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.value-subtitle {
    font-size: 1.4rem;
    color: var(--color-white-soft);
    line-height: 1.6;
}

/* Legacy class for backward compatibility */
.section-title-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-white), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-value {
    font-size: 1.2rem;
    color: var(--color-white-soft);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.value-card {
    background: linear-gradient(135deg, var(--color-grey-dark), var(--color-grey));
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 3rem 2.5rem; /* 🎯 BASE: מאוזן */
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    min-height: 380px; /* 🎯 BASE: מניעת דחיסה */
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.value-card:hover {
    transform: translateY(-5px);
    border: 2px solid;
    border-image: linear-gradient(135deg, rgba(255,255,255,0.8), var(--color-gold)) 1;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15), 0 8px 25px rgba(212, 175, 55, 0.2);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), var(--color-gold), var(--color-gold-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15), 0 5px 20px rgba(212, 175, 55, 0.2);
}

.value-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--color-dark);
}

.value-title {
    font-size: 1.9rem; /* 🎯 BASE: מאוזן */
    font-weight: 800;
    margin-bottom: 1.6rem; /* 🎯 BASE */
    background: linear-gradient(135deg, var(--color-white), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.6;
}

.value-list i {
    background: linear-gradient(135deg, var(--color-white), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.value-list span {
    color: var(--color-white-soft);
    font-size: 1.05rem; /* 🎯 BASE: מאוזן */
    line-height: 1.65; /* 🎯 BASE */
}

/* ===== VIDEO TESTIMONIALS SECTION ===== */
.video-testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-grey-dark) 100%);
}

.section-header-testimonials {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-testimonials {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-white), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-testimonials {
    font-size: 1.2rem;
    color: var(--color-white-soft);
    max-width: 700px;
    margin: 0 auto;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 3rem;
    max-width: 1400px; /* 🎯 מקסימום סביר למסכים גדולים */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 3rem; /* ריפוד מהצדדים */
}

.video-card {
    background: var(--color-grey-dark);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all var(--transition-slow);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.video-card[data-video="1"] { animation-delay: 0.1s; }
.video-card[data-video="2"] { animation-delay: 0.2s; }
.video-card[data-video="3"] { animation-delay: 0.3s; }
.video-card[data-video="4"] { animation-delay: 0.4s; }

.video-card:hover {
    transform: translateY(-10px);
    border: 2px solid;
    border-image: linear-gradient(135deg, rgba(255,255,255,0.8), var(--color-gold)) 1;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.15), 0 10px 30px rgba(212, 175, 55, 0.2);
}

.video-wrapper {
    width: 100%;
    background: #000;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    /* Vimeo inline styles handle the aspect ratio */
}

.video-wrapper iframe {
    display: block;
    border: none;
}

.video-info {
    padding: 2rem;
}

.video-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), var(--color-gold), rgba(255,255,255,0.3), transparent) 1;
}

.rating-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-white), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-stars {
    background: linear-gradient(135deg, var(--color-white), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.video-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.video-description {
    color: var(--color-white-soft);
    line-height: 1.7;
    font-size: 1rem;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-forest-green), var(--color-dark-green));
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20rem;
    font-family: Georgia, serif;
    color: rgba(212, 175, 55, 0.05);
    pointer-events: none;
}

.quote-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.quote-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.quote-text {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--color-white);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.quote-author {
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--color-white), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* ===== TESTIMONIALS CTA SECTION ===== */
.testimonials-cta-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-dark-green) 100%);
}

.cta-content-testimonials {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--color-grey-dark), var(--color-dark-green));
    border: 3px solid;
    border-image: linear-gradient(135deg, var(--color-white), var(--color-gold)) 1;
    border-radius: 30px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.cta-content-testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content-testimonials h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
}

.cta-content-testimonials p {
    font-size: 1.2rem;
    color: var(--color-white-soft);
    margin-bottom: 2rem;
    position: relative;
}

.cta-button-testimonials {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), var(--color-gold), var(--color-gold-light));
    color: var(--color-dark);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--font-primary);
    position: relative;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2), 0 5px 25px rgba(212, 175, 55, 0.2);
}

.cta-button-testimonials:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3), 0 8px 35px rgba(212, 175, 55, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .testimonials-hero {
        min-height: 500px; /* ⬆️ מ-400px ל-500px למובייל */
        padding: 7rem 1.5rem 3.5rem; /* ⬆️ שיפור Padding */
    }
    
    .hero-content-testimonials {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: clamp(2.4rem, 7vw, 3.2rem); /* 🎯 מאוזן */
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }
    
    .hero-description {
        font-size: 1.2rem; /* 🎯 מאוזן */
        line-height: 1.7;
    }
    
    .value-section {
        padding: 4rem 1.5rem;
    }
    
    .section-header-value {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .value-main-title {
        font-size: clamp(2.6rem, 8vw, 3.8rem); /* 🎯 מאוזן */
        margin-bottom: 1.25rem;
    }
    
    .value-subtitle {
        font-size: 1.25rem; /* 🎯 מאוזן */
        padding: 0 1.5rem;
        line-height: 1.7;
    }
    
    .value-grid {
        gap: 2.5rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .value-card {
        padding: 3rem 2.5rem; /* 🎯 מאוזן - לא גדול מידי */
        text-align: center;
        max-width: 100%;
        min-height: 400px; /* 🎯 מאוזן */
    }
    
    .value-icon-wrapper {
        width: 85px; /* 🎯 מאוזן */
        height: 85px;
        margin: 0 auto 1.5rem;
    }
    
    .value-icon-wrapper i {
        font-size: 2.4rem; /* 🎯 מאוזן */
    }
    
    .value-title {
        font-size: 1.8rem; /* 🎯 מאוזן - לא גדול מידי */
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .value-list {
        gap: 1rem;
        text-align: right;
    }
    
    .value-list span {
        font-size: 1.1rem; /* 🎯 מאוזן - קריא אבל לא ענק */
        line-height: 1.7;
    }
    
    .section-header-testimonials {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .section-title-testimonials {
        font-size: clamp(2.3rem, 6vw, 2.9rem); /* 🎯 מאוזן */
        margin-bottom: 1rem;
    }
    
    .section-subtitle-testimonials {
        font-size: 1.2rem; /* 🎯 מאוזן */
        line-height: 1.7;
    }
    
    .video-info {
        padding: 2.5rem; /* 🎯 מאוזן */
    }
    
    .rating-number {
        font-size: 2.4rem; /* 🎯 מאוזן */
    }
    
    .rating-stars {
        font-size: 1.4rem; /* 🎯 מאוזן */
    }
    
    .video-title {
        font-size: 1.5rem; /* 🎯 מאוזן */
        line-height: 1.6;
    }
    
    .video-description {
        font-size: 1.1rem; /* 🎯 מאוזן */
        line-height: 1.7;
    }
    
    .videos-grid {
        padding: 0 1.5rem; /* ריפוד קטן יותר בטאבלט */
        gap: 3rem;
    }
    
    .quote-text {
        font-size: 1.5rem; /* 🎯 מאוזן */
        line-height: 1.8;
        padding: 0 1rem;
    }
    
    .cta-content-testimonials {
        padding: 3.5rem 2rem; /* 🎯 מאוזן */
    }
    
    .cta-content-testimonials h2 {
        font-size: 2.5rem; /* 🎯 מאוזן */
        line-height: 1.4;
    }
    
    .cta-content-testimonials p {
        font-size: 1.25rem; /* 🎯 מאוזן */
        line-height: 1.7;
    }
    
    .cta-button-testimonials {
        padding: 1.2rem 2.2rem; /* 🎯 Touch Target */
        font-size: 1.15rem;
        min-height: 52px; /* 🎯 Touch Target: 52px */
    }
    
    .nav-menu {
        display: none;
    }
}

@media (max-width: 480px) {
    .testimonials-hero {
        min-height: 450px; /* תיקון למסכים קטנים במיוחד */
        padding: 6.5rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2.2rem; /* 480px - מסך קטן */
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1.2rem; /* ⬆️ מ-1.15rem ל-1.2rem */
        line-height: 1.8; /* ⬆️ מ-1.7 ל-1.8 */
    }
    
    .value-main-title {
        font-size: 2.4rem; /* 🎯 מאוזן */
    }
    
    .value-subtitle {
        font-size: 1.2rem; /* ⬆️ מ-1.15rem ל-1.2rem */
    }
    
    .value-title {
        font-size: 1.7rem; /* 🎯 מאוזן */
    }
    
    .value-list span {
        font-size: 1.05rem; /* 🎯 מאוזן */
        line-height: 1.65;
    }
    
    .value-card {
        padding: 2.8rem 2rem; /* 🎯 מאוזן למסך קטן */
        min-height: 380px; /* 🎯 */
    }
    
    .stat-number {
        font-size: 2.6rem; /* ⬆️ מ-2.5rem ל-2.6rem */
    }
    
    .rating-number {
        font-size: 2rem; /* ⬆️ מ-1.7rem ל-2rem */
    }
    
    .rating-stars {
        font-size: 1.2rem; /* התאמה ל-480px */
    }
    
    .video-title {
        font-size: 1.5rem; /* ⬆️ מ-1.4rem ל-1.5rem */
        line-height: 1.5;
    }
    
    .videos-grid {
        padding: 0 1rem; /* ריפוד מינימלי במובייל */
        gap: 2.5rem;
    }
    
    .video-description {
        font-size: 1.1rem; /* התאמה ל-480px */
        line-height: 1.7;
    }
    
    .video-info {
        padding: 2.2rem; /* התאמה ל-480px */
    }
    
    .video-wrapper {
        min-height: 300px; /* 🎯 מובייל - קטן וממוקד */
    }
    
    .quote-text {
        font-size: 1.4rem; /* ⬆️ מ-1.3rem ל-1.4rem */
        line-height: 1.8;
        padding: 0 0.5rem; /* מרווח יותר */
    }
    
    .cta-content-testimonials h2 {
        font-size: 2.3rem; /* ⬆️ מ-2.1rem ל-2.3rem */
        line-height: 1.3;
    }
    
    .cta-content-testimonials p {
        font-size: 1.2rem; /* ⬆️ מ-1.15rem ל-1.2rem */
        line-height: 1.7;
    }
    
    .cta-button-testimonials {
        padding: 1.1rem 2rem; /* ⬆️ Touch Target */
        font-size: 1.05rem; /* התאמה ל-480px */
        min-height: 50px; /* ✅ Touch Target */
    }
}