/* Modern Secondary Pages CSS */
:root {
    --primary-gold: #D4AF37;
    --secondary-rose: #C73E6D;
    --deep-purple: #4A148C;
    --light-cream: #FFF8E1;
    --dark-text: #2C1810;
    --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #C73E6D 50%, #4A148C 100%);
    --gradient-hover: linear-gradient(135deg, #4A148C 0%, #C73E6D 50%, #D4AF37 100%);
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
    --border-radius: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* General body styles for secondary pages */
body {
    font-family: 'Heebo', 'Rubik', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--dark-text);
    direction: rtl;
    background: var(--light-cream);
    position: relative;
    overflow-x: hidden;
    scroll-behavior: smooth;
    min-height: 100vh;
}

/* Modern Animated Background for secondary pages */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/images/kabala.jpg') no-repeat center center;
    background-size: cover;
    filter: blur(20px) brightness(1.2);
    opacity: 0.08;
    z-index: -1;
    pointer-events: none;
    animation: backgroundPulse 10s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(1deg); }
}

/* Floating Orbs Background */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212,175,55,0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(199,62,109,0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(74,20,140,0.1) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    animation: orbFloat 15s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -30px); }
    50% { transform: translate(-20px, 20px); }
    75% { transform: translate(-30px, -10px); }
}

/* Modern Header with Glassmorphism */
header {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Logo container with modern animations */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    animation: fadeInZoom 0.8s ease-out 0.3s both;
}

@keyframes fadeInZoom {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 
        0 15px 40px rgba(212,175,55,0.3),
        0 0 0 4px rgba(255,255,255,0.9),
        0 0 0 8px rgba(212,175,55,0.2);
    transition: var(--transition);
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 
        0 20px 50px rgba(212,175,55,0.4),
        0 0 0 6px rgba(255,255,255,1),
        0 0 0 12px rgba(199,62,109,0.3);
}

header h1 {
    font-family: 'Playfair Display', 'Frank Ruhl Libre', serif;
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    position: relative;
    letter-spacing: -0.02em;
}

/* Modern Section Styles */
.section {
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    margin: 3rem auto;
    box-shadow: var(--shadow-soft);
    border-radius: var(--border-radius);
    max-width: 900px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient Border Effect */
.section::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.5;
    animation: gradientRotate 8s linear infinite;
}

@keyframes gradientRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Section Titles */
.section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: lineExpand 1s ease-out 0.5s both;
}

@keyframes lineExpand {
    from { width: 0; }
    to { width: 60px; }
}

/* Modern Product Images */
.product-image {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transition: var(--transition);
    cursor: zoom-in;
}

.product-image:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

/* Gallery Section with Modern Grid */
.gallery {
    background: rgba(255, 255, 255, 0.98);
    padding: 4rem 2rem;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.gallery-container a {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: var(--transition);
    display: block;
    cursor: pointer;
}

.gallery-container a::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    z-index: 1;
    transition: transform 0.3s ease;
}

.gallery-container a:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    transition: var(--transition);
}

.gallery-container a:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.gallery-container a:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

/* Modern Details Button */
.details-button {
    display: inline-block;
    margin: 2rem 0;
    padding: 1.2rem 3rem;
    background: var(--gradient-primary);
    color: white !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.details-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-hover);
    transition: left 0.5s ease;
    z-index: -1;
}

.details-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.details-button:hover::before {
    left: 0;
}

/* Video Player Styling */
.main-video-player {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin: 2rem auto;
    display: block;
    overflow: hidden;
}

/* Modern Footer */
footer {
    background: linear-gradient(135deg, #2C1810 0%, #4A148C 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    animation: footerLine 4s linear infinite;
}

@keyframes footerLine {
    to { left: 100%; }
}

footer p {
    margin: 1rem 0;
    font-size: 1.1rem;
    color: var(--light-cream);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: var(--transition);
    position: relative;
    border: 2px solid rgba(212,175,55,0.3);
}

.social-links a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(212,175,55,0.4);
    border-color: rgba(212,175,55,0.6);
}

.social-links a:hover::before {
    border-color: var(--primary-gold);
    transform: scale(1.2);
}

.social-links img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(45deg);
}

/* Tehilim Section Special Styling */
.tehilim-section {
    background: linear-gradient(135deg, rgba(255,248,225,0.95) 0%, rgba(255,255,255,0.98) 100%);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    max-width: 900px;
    margin: 3rem auto;
    position: relative;
    overflow: hidden;
}

.tehilim-section::before {
    content: '✨';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.tehilim-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.tehilim-section p,
.tehilim-section li {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.tehilim-section ul {
    list-style: none;
    padding-right: 0;
}

.tehilim-section ul li {
    position: relative;
    padding-right: 2rem;
    margin-bottom: 1rem;
}

.tehilim-section ul li::before {
    content: '✦';
    position: absolute;
    right: 0;
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.tehilim-section strong {
    color: var(--secondary-rose);
    font-weight: 600;
}

/* Center Images */
.image-center {
    text-align: center;
    margin: 3rem 0;
    position: relative;
}

.image-center img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.image-center img:hover {
    transform: scale(1.02) rotate(0.5deg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

/* Page Animations */
#product-details-content {
    animation: contentFadeIn 0.8s ease-out;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 2rem 1rem;
        margin: 2rem 1rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .tehilim-section {
        padding: 2rem 1.5rem;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .main-video-player {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .details-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .tehilim-section {
        padding: 1.5rem 1rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-hover);
}

/* Print Styles */
@media print {
    body::before,
    body::after,
    header {
        display: none;
    }
    
    .section {
        box-shadow: none;
        page-break-inside: avoid;
    }
}

/* Accessibility */
*:focus {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Loading State */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-cream);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
     .mystical-bg {
            position: fixed;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--primary-gold);
            border-radius: 50%;
            animation: twinkle 3s infinite;
        }

        .star-1 { top: 20%; left: 10%; animation-delay: 0s; }
        .star-2 { top: 50%; right: 20%; animation-delay: 1s; }
        .star-3 { bottom: 30%; left: 30%; animation-delay: 2s; }
        .star-4 { top: 70%; right: 40%; animation-delay: 1.5s; }
        .star-5 { bottom: 10%; right: 10%; animation-delay: 2.5s; }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.5); }
        }

        /* Mystical Header */
        .mystical-header {
            position: relative;
            background: linear-gradient(135deg, rgba(74,20,140,0.05) 0%, rgba(212,175,55,0.05) 100%);
            overflow: hidden;
        }

        .header-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            animation: pulse-glow 3s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.8; }
        }

        .mystical-title {
            position: relative;
            z-index: 2;
            text-shadow: 0 0 30px rgba(212,175,55,0.5);
        }

        .glow-effect {
            transition: all 0.3s ease;
        }

        .glow-effect.active-glow {
            filter: drop-shadow(0 0 20px rgba(212,175,55,0.8));
        }

        .header-ornament {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            color: var(--light-cream);
        }

        .header-ornament svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 100px;
        }

        /* Hero Section */
        .hero-section-tehilim {
            position: relative;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, var(--deep-purple) 0%, var(--primary-gold) 100%);
        }

        .hero-bg-animation {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            animation: float-circle 20s infinite ease-in-out;
        }

        .circle-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            left: -150px;
        }

        .circle-2 {
            width: 400px;
            height: 400px;
            bottom: -200px;
            right: -200px;
            animation-delay: -7s;
        }

        .circle-3 {
            width: 200px;
            height: 200px;
            top: 50%;
            left: 50%;
            animation-delay: -14s;
        }

        @keyframes float-circle {
            0%, 100% { transform: translate(0, 0); }
            25% { transform: translate(100px, -100px); }
            50% { transform: translate(-100px, 100px); }
            75% { transform: translate(50px, 50px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .hero-title {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            opacity: 0.9;
        }

        .animate-fade-in {
            animation: fadeIn 1s ease-out;
        }

        .animate-fade-in-delay {
            animation: fadeIn 1s ease-out 0.3s both;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Modern Mystical Section */
        .modern-mystical-section {
            padding: 5rem 2rem;
            background: transparent;
        }

        .content-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Intro Card */
        .intro-card-tehilim {
            position: relative;
            max-width: 800px;
            margin: 0 auto 4rem;
            padding: 3rem;
            background: white;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .card-border {
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-primary);
            border-radius: 30px;
            z-index: -1;
            animation: gradient-rotate 8s linear infinite;
        }

        @keyframes gradient-rotate {
            to { transform: rotate(360deg); }
        }

        .card-content {
            position: relative;
            z-index: 2;
        }

        .icon-container {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .icon-container i {
            font-size: 3rem;
            color: var(--primary-gold);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .intro-text {
            font-size: 1.3rem;
            line-height: 1.8;
            text-align: center;
            color: var(--deep-purple);
        }

        /* Services Grid */
        .services-grid-tehilim {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .service-card-tehilim {
            position: relative;
            padding: 3rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }

        .service-card-tehilim.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card-tehilim:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .card-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            font-weight: 700;
            color: rgba(212,175,55,0.2);
            font-family: 'Playfair Display', serif;
        }

        .card-icon {
            font-size: 2.5rem;
            color: var(--secondary-rose);
            margin-bottom: 1rem;
        }

        .service-card-tehilim h3 {
            color: var(--deep-purple);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .card-decoration {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card-tehilim:hover .card-decoration {
            transform: scaleX(1);
        }

        /* Quote Section */
        .quote-section {
            margin: 4rem 0;
            text-align: center;
        }

        .quote-container {
            position: relative;
            max-width: 700px;
            margin: 0 auto;
            padding: 3rem;
            background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, rgba(199,62,109,0.05) 100%);
            border-radius: 20px;
        }

        .quote-mark {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 4rem;
            color: var(--primary-gold);
            opacity: 0.2;
        }

        .quote-text {
            font-size: 1.3rem;
            line-height: 1.8;
            color: var(--deep-purple);
            font-style: italic;
        }

        .quote-author {
            margin-top: 1rem;
            color: var(--secondary-rose);
            font-weight: 600;
        }

        /* Image Section */
        .image-section {
            margin: 4rem 0;
            text-align: center;
        }

        .image-frame {
            position: relative;
            max-width: 700px;
            margin: 0 auto;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,0.2);
        }

        .main-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(74,20,140,0.9) 0%, transparent 100%);
            padding: 3rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .image-frame:hover .main-image {
            transform: scale(1.05);
        }

        .image-frame:hover .image-overlay {
            transform: translateY(0);
        }

        .overlay-text {
            color: white;
        }

        .overlay-text h3 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        /* Process Section */
        .process-section {
            margin: 5rem 0;
            text-align: center;
        }

        .process-timeline {
            position: relative;
            max-width: 1000px;
            margin: 3rem auto;
            padding: 2rem 0;
        }

        .timeline-line {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: rgba(212,175,55,0.2);
            transform: translateY(-50%);
            z-index: -1;
        }

        .timeline-line.animate::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            animation: line-grow 2s ease-out;
        }

        @keyframes line-grow {
            from { transform: scaleX(0); transform-origin: left; }
            to { transform: scaleX(1); transform-origin: left; }
        }

        .process-step {
            display: inline-block;
            width: 25%;
            vertical-align: top;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s ease;
        }

        .process-step.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .step-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            z-index: 2;
        }

        .step-icon i {
            font-size: 2rem;
            color: var(--primary-gold);
        }

        .step-content h3 {
            color: var(--deep-purple);
            margin-bottom: 0.5rem;
        }

        /* Benefits Section */
        .benefits-section {
            margin: 5rem 0;
            text-align: center;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .benefit-item {
            padding: 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .benefit-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .benefit-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .benefit-item i {
            font-size: 2.5rem;
            color: var(--secondary-rose);
            margin-bottom: 1rem;
        }

        .benefit-item h4 {
            color: var(--deep-purple);
            margin-bottom: 0.5rem;
        }

        /* Testimonial Section */
        .testimonial-section-tehilim {
            margin: 5rem 0;
            text-align: center;
        }

        .testimonial-card-special {
            max-width: 700px;
            margin: 0 auto;
            padding: 3rem;
            background: linear-gradient(135deg, white 0%, rgba(255,248,225,0.8) 100%);
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            position: relative;
        }

        .stars {
            color: var(--primary-gold);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .testimonial-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--dark-text);
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author strong {
            color: var(--deep-purple);
            display: block;
        }

        .testimonial-author span {
            color: #999;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section-tehilim {
            position: relative;
            padding: 6rem 2rem;
            text-align: center;
            overflow: hidden;
            background: var(--gradient-primary);
        }

        .cta-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background-image: 
                radial-gradient(circle at 20% 50%, white 2px, transparent 2px),
                radial-gradient(circle at 80% 80%, white 2px, transparent 2px),
                radial-gradient(circle at 40% 20%, white 2px, transparent 2px);
            background-size: 100px 100px;
            animation: pattern-move 20s linear infinite;
        }

        @keyframes pattern-move {
            to { transform: translate(100px, 100px); }
        }

        .cta-title {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 1rem;
        }

        .cta-text {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 2rem;
        }

        .cta-button-tehilim {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem 3rem;
            background: white;
            color: var(--deep-purple);
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .cta-button-tehilim:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .services-grid-tehilim {
                grid-template-columns: 1fr;
            }

            .process-step {
                width: 100%;
                margin-bottom: 2rem;
            }

            .timeline-line {
                display: none;
            }

            .benefits-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }

            .intro-card-tehilim {
                padding: 2rem;
            }

            .quote-container {
                padding: 2rem;
            }
        }

        @media (max-width: 480px) {
            .page-title {
                font-size: 2rem;
            }

            .card-number {
                font-size: 2rem;
            }

            .benefit-item {
                padding: 1.5rem;
            }

            .cta-button-tehilim {
                padding: 1.2rem 2rem;
                font-size: 1rem;
            }
        }

        /* Print Styles */
        @media print {
            .mystical-bg,
            .hero-section-tehilim,
            .cta-section-tehilim {
                display: none;
            }
        }

        /* Animation on scroll */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1.5s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Sparkles Background */
        .sparkles-bg {
            position: fixed;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .sparkle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-gold);
            border-radius: 50%;
            animation: sparkle-float 10s linear infinite;
            opacity: 0;
        }

        @keyframes sparkle-float {
            0% {
                opacity: 0;
                transform: translateY(100vh) scale(0);
            }
            10% {
                opacity: 1;
                transform: translateY(90vh) scale(1);
            }
            90% {
                opacity: 1;
                transform: translateY(10vh) scale(1);
            }
            100% {
                opacity: 0;
                transform: translateY(0) scale(0);
            }
        }

        /* Workshop Header */
        .workshop-header {
            position: relative;
            background: linear-gradient(135deg, rgba(255,248,225,0.95) 0%, rgba(255,255,255,0.9) 100%);
            overflow: hidden;
        }

        .header-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(212,175,55,0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(199,62,109,0.1) 0%, transparent 40%);
            animation: pattern-shift 20s ease-in-out infinite;
        }

        @keyframes pattern-shift {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(20px, -20px); }
        }

        .gradient-text-workshop {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-rose) 50%, var(--deep-purple) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 3rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .animate-float {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .header-wave-workshop {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            color: var(--light-cream);
        }

        .header-wave-workshop svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 80px;
        }

        /* Hero Section */
        .hero-section-workshop {
            position: relative;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(74,20,140,0.05) 0%, rgba(212,175,55,0.05) 100%);
        }

        .hero-backdrop {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 50%);
            animation: rotate-slow 30s linear infinite;
        }

        @keyframes rotate-slow {
            to { transform: rotate(360deg); }
        }

        .hero-icon {
            font-size: 4rem;
            color: var(--primary-gold);
            margin-bottom: 2rem;
            animation: pulse-glow 2s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { 
                transform: scale(1); 
                filter: drop-shadow(0 0 20px rgba(212,175,55,0.5));
            }
            50% { 
                transform: scale(1.1); 
                filter: drop-shadow(0 0 40px rgba(212,175,55,0.8));
            }
        }

        /* Content Sections */
        .workshop-content {
            padding: 5rem 2rem;
        }

        .content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Intro Card */
        .intro-card-workshop {
            position: relative;
            max-width: 800px;
            margin: 0 auto 4rem;
            padding: 3rem;
            background: white;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .card-glow {
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(199,62,109,0.1) 0%, transparent 50%);
            animation: glow-pulse 4s ease-in-out infinite;
        }

        @keyframes glow-pulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.1); }
        }

        .card-inner {
            position: relative;
            z-index: 2;
        }

        .decorative-line {
            width: 60px;
            height: 4px;
            background: var(--gradient-primary);
            margin: 2rem auto 0;
            border-radius: 2px;
        }

        /* Workshop Types Grid */
        .types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .type-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .type-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .type-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .type-card:hover::before {
            transform: scaleX(1);
        }

        .type-icon {
            font-size: 2.5rem;
            color: var(--secondary-rose);
            margin-bottom: 1rem;
        }

        .type-card h3 {
            color: var(--deep-purple);
            margin-bottom: 0.5rem;
        }

        /* Image Showcase */
        .image-showcase-workshop {
            margin: 4rem 0;
            text-align: center;
        }

        .showcase-frame {
            position: relative;
            max-width: 700px;
            margin: 0 auto;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,0.2);
        }

        .showcase-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(74,20,140,0.8) 0%, transparent 100%);
            color: white;
            padding: 2rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .showcase-frame:hover .image-caption {
            transform: translateY(0);
        }

        /* Timeline */
        .includes-timeline {
            position: relative;
            padding: 2rem 0;
            margin: 3rem 0;
        }

        .includes-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            right: 30px;
            width: 2px;
            background: rgba(212,175,55,0.3);
        }

        .timeline-item {
            position: relative;
            padding-right: 60px;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.5s ease;
        }

        .timeline-item.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .timeline-dot {
            position: absolute;
            right: 21px;
            top: 0;
            width: 20px;
            height: 20px;
            background: var(--primary-gold);
            border-radius: 50%;
            box-shadow: 0 0 0 4px rgba(212,175,55,0.2);
        }

        .timeline-content {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .timeline-content h3 {
            color: var(--deep-purple);
            margin-bottom: 0.5rem;
        }

        /* Benefits Cards */
        .benefits-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .benefit-card {
            background: linear-gradient(135deg, white 0%, rgba(255,248,225,0.8) 100%);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .benefit-card i {
            font-size: 2rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
        }

        .benefit-card h4 {
            color: var(--deep-purple);
            margin-bottom: 0.5rem;
        }

        /* Gallery */
        .workshop-gallery {
            background: rgba(255,248,225,0.3);
            padding: 4rem 2rem;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .gallery-title {
            font-size: 2.5rem;
            color: var(--deep-purple);
            margin-bottom: 0.5rem;
        }

        .star-decoration {
            color: var(--primary-gold);
            font-size: 1.5rem;
            margin: 0 1rem;
        }

        .workshop-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            opacity: 1 !important;
            transform: translateY(0) !important;
        }

        .gallery-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(74,20,140,0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: white;
            font-size: 2.5rem;
        }

        /* Testimonials */
        .testimonials-workshop {
            padding: 4rem 2rem;
            text-align: center;
            background: white;
        }

        .testimonials-slider {
            max-width: 800px;
            margin: 3rem auto;
            position: relative;
            height: 200px;
        }

        .testimonial-workshop {
            position: absolute;
            width: 100%;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.5s ease;
        }

        .testimonial-workshop.active {
            opacity: 1;
            transform: translateX(0);
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--primary-gold);
            opacity: 0.3;
            font-family: 'Playfair Display', serif;
        }

        .testimonial-workshop p {
            font-size: 1.3rem;
            line-height: 1.8;
            color: var(--deep-purple);
            margin: 1rem 0;
            font-style: italic;
        }

        .author {
            color: var(--secondary-rose);
            font-weight: 600;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(0,0,0,0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--primary-gold);
            transform: scale(1.5);
        }

        /* CTA Section */
        .cta-section-workshop {
            position: relative;
            padding: 6rem 2rem;
            text-align: center;
            overflow: hidden;
            background: var(--gradient-primary);
        }

        .cta-background-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 35px, white 35px, white 70px);
            animation: pattern-slide 20s linear infinite;
        }

        @keyframes pattern-slide {
            to { transform: translateX(70px); }
        }

        .cta-button-workshop {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem 3rem;
            background: white;
            color: var(--deep-purple);
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .cta-button-workshop:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .gradient-text-workshop {
                font-size: 2rem;
            }

            .types-grid {
                grid-template-columns: 1fr;
            }

            .includes-timeline::before {
                right: 20px;
            }

            .timeline-item {
                padding-right: 40px;
            }

            .timeline-dot {
                right: 11px;
            }

            .workshop-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-workshop p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-icon {
                font-size: 3rem;
            }

            .hero-title {
                font-size: 1.8rem;
            }

            .intro-card-workshop {
                padding: 2rem 1.5rem;
            }

            .cta-button-workshop {
                padding: 1.2rem 2rem;
                font-size: 1rem;
            }
        }

        /* Animation on scroll */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-text {
            animation: fadeInUp 1s ease-out;
        }

        .animate-text-delay {
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Page Header Animation */
        .page-header {
            position: relative;
            padding: 3rem 2rem;
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,248,225,0.9) 100%);
            overflow: hidden;
        }

        .header-bg-animation {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 50%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            to { transform: rotate(360deg); }
        }

        .page-title {
            font-size: 3rem;
            margin: 1rem 0;
            animation: titleSlide 0.8s ease-out;
        }

        @keyframes titleSlide {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .page-subtitle {
            font-size: 1.3rem;
            color: var(--deep-purple);
            opacity: 0.8;
            animation: subtitleFade 1s ease-out 0.3s both;
        }

        @keyframes subtitleFade {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 0.8;
                transform: translateY(0);
            }
        }

        /* Hero Section */
        .hero-section-secondary {
            position: relative;
            height: 400px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: url('/static/images/kabala.jpg') center/cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(74,20,140,0.8) 0%, rgba(212,175,55,0.6) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .hero-title {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-text {
            font-size: 1.5rem;
            opacity: 0.9;
        }

        /* Modern Content Sections */
        .modern-content {
            background: transparent;
            box-shadow: none;
            max-width: 1000px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .content-wrapper {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .section-intro {
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-icon {
            font-size: 3rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
            display: block;
            animation: iconFloat 3s ease-in-out infinite;
        }

        @keyframes iconFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .content-card {
            background: rgba(255,255,255,0.95);
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .content-card::before {
            content: '';
            position: absolute;
            top: -2px;
            right: -2px;
            bottom: -2px;
            left: -2px;
            background: var(--gradient-primary);
            border-radius: 30px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .content-card:hover::before {
            opacity: 0.1;
        }

        .lead-text {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: var(--deep-purple);
        }

        /* Quote Box */
        .quote-box {
            background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(199,62,109,0.1) 100%);
            padding: 2rem;
            border-radius: 20px;
            margin: 2rem 0;
            position: relative;
            text-align: center;
        }

        .quote-icon {
            font-size: 2rem;
            color: var(--primary-gold);
            opacity: 0.3;
            position: absolute;
            top: 10px;
            right: 20px;
        }

        .quote-box p {
            font-size: 1.5rem;
            font-style: italic;
            color: var(--deep-purple);
            margin: 0;
        }

        /* Info Box */
        .info-box {
            background: rgba(74,20,140,0.05);
            border-right: 4px solid var(--deep-purple);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            display: flex;
            align-items: start;
            gap: 1rem;
        }

        .info-box i {
            color: var(--deep-purple);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        /* Process Cards */
        .process-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .process-card {
            background: linear-gradient(135deg, #fff 0%, rgba(255,248,225,0.8) 100%);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .process-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .process-card i {
            font-size: 2.5rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
            display: block;
        }

        .process-card h3 {
            color: var(--deep-purple);
            margin-bottom: 0.5rem;
        }

        /* Symptoms Grid */
        .symptoms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .symptom-card {
            background: rgba(255,255,255,0.9);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .symptom-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-gold);
            box-shadow: 0 15px 40px rgba(212,175,55,0.2);
        }

        .symptom-card i {
            font-size: 2rem;
            color: var(--secondary-rose);
            margin-bottom: 1rem;
            display: block;
        }

        .symptom-card h4 {
            color: var(--deep-purple);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        /* Treatment Section */
        .treatment-section {
            background: rgba(255,255,255,0.95);
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .treatment-steps {
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .treatment-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            display: inline-block;
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            line-height: 60px;
            border-radius: 50%;
            margin-bottom: 1rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .step-arrow {
            color: var(--primary-gold);
            font-size: 2rem;
        }

        /* תיקון לחצים בטלפון */
        @media (max-width: 768px) {
            .step-arrow i {
                transform: rotate(180deg);
            }
        }

        /* Video Container */
        .video-container {
            position: relative;
            max-width: 600px;
            margin: 2rem auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(199,62,109,0.1) 100%);
            padding: 1rem;
        }
        
        .video-container video {
            width: 100%;
            height: auto;
            border-radius: 15px;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .video-container:hover video {
            transform: scale(1.02);
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .video-container:hover .video-overlay {
            opacity: 0;
        }

        .video-overlay i {
            font-size: 4rem;
            color: white;
            opacity: 0.8;
        }

        /* Modern Gallery */
        .modern-gallery {
            background: rgba(255,248,225,0.3);
            padding: 4rem 2rem;
        }

        .modern-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            opacity: 1 !important;
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(74,20,140,0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: white;
            font-size: 2.5rem;
        }

        /* תיקון לגלריה בדף lead */
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            padding: 2rem 0;
        }

        .gallery-container .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            display: block;
            min-height: 250px;
            background: none !important;
        }

        .gallery-container .gallery-item img {
            width: 100% !important;
            height: 250px !important;
            object-fit: cover !important;
            transition: transform 0.5s ease;
            display: block !important;
            border-radius: 15px;
            opacity: 1 !important;
            visibility: visible !important;
            z-index: 10 !important;
        }

        .gallery-container .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .gallery-container .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-container .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(74,20,140,0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-container .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .gallery-container .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-container .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-container .gallery-overlay i {
            color: white;
            font-size: 2.5rem;
        }

        /* גלריה חדשה ללא lightbox */
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 1rem;
            text-align: center;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-container .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }

        .gallery-caption p {
            margin: 0;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* CTA Section */
        .cta-section {
            position: relative;
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--deep-purple) 0%, var(--primary-gold) 100%);
            overflow: hidden;
            margin-top: 4rem;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 1rem;
        }

        .cta-text {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 2rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem 3rem;
            background: white;
            color: var(--deep-purple);
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .cta-bg-shape {
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(50px, -50px) rotate(90deg); }
            50% { transform: translate(-50px, 50px) rotate(180deg); }
            75% { transform: translate(30px, 30px) rotate(270deg); }
        }

        /* Animate on scroll */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Highlight text */
        .highlight-text {
            font-size: 1.2rem;
            color: var(--secondary-rose);
            font-weight: 600;
            text-align: center;
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(199,62,109,0.05);
            border-radius: 15px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-text {
                font-size: 1.2rem;
            }

            .process-cards {
                grid-template-columns: 1fr;
            }

            .treatment-steps {
                flex-direction: column;
            }

            .step-arrow {
                transform: rotate(90deg);
            }

            .symptoms-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }

            .modern-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }

            .content-card {
                padding: 2rem 1.5rem;
            }

            .cta-title {
                font-size: 2rem;
            }

            .cta-text {
                font-size: 1.1rem;
            }
            
            .video-container {
                margin: 1rem auto;
                padding: 0.5rem;
            }
            
            .video-container video {
                border-radius: 10px;
            }
        }

        @media (max-width: 480px) {
            .page-title {
                font-size: 2rem;
            }

            .section-icon {
                font-size: 2rem;
            }

            .treatment-step h3 {
                font-size: 1rem;
            }

            .step-number {
                width: 50px;
                height: 50px;
                line-height: 50px;
                font-size: 1.2rem;
            }

            .gallery-item img {
                height: 200px;
            }
        }

        /* Loading animation for images */
        .gallery-item img {
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .gallery-item img.loaded {
            opacity: 1;
        }

        /* Custom scrollbar for gallery */
        .gallery-container::-webkit-scrollbar {
            height: 8px;
        }

        .gallery-container::-webkit-scrollbar-track {
            background: rgba(0,0,0,0.1);
            border-radius: 4px;
        }

        .gallery-container::-webkit-scrollbar-thumb {
            background: var(--primary-gold);
            border-radius: 4px;
        }

        /* Print styles */
        @media print {
            .hero-section-secondary,
            .gallery,
            .cta-section,
            .video-container {
                display: none;
            }

            .content-card {
                box-shadow: none;
                border: 1px solid #ddd;
            }
        }

        /* Floating Elements */
        .floating-elements {
            position: fixed;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            font-size: 2rem;
            opacity: 0.1;
            animation: float-around 20s infinite ease-in-out;
        }

        .element-1 { top: 10%; left: 10%; animation-duration: 22s; }
        .element-2 { top: 70%; right: 10%; animation-duration: 25s; }
        .element-3 { bottom: 20%; left: 50%; animation-duration: 28s; }
        .element-4 { top: 50%; right: 30%; animation-duration: 30s; }

        @keyframes float-around {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(100px, -100px) rotate(90deg); }
            50% { transform: translate(-50px, 100px) rotate(180deg); }
            75% { transform: translate(-100px, -50px) rotate(270deg); }
        }

        /* Parallax Header */
        .parallax-header {
            position: relative;
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,248,225,0.9) 100%);
            overflow: hidden;
            padding: 4rem 2rem;
        }

        .header-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/static/images/wheat-pattern.png') repeat;
            opacity: 0.05;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-rose) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .header-decoration {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .header-decoration svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 120px;
            fill: var(--light-cream);
        }

        /* Hero Section */
        .hero-section-hala {
            position: relative;
            height: 500px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .hero-video-bg video {
            min-width: 100%;
            min-height: 100%;
            object-fit: cover;
            filter: brightness(0.4);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .animate-text {
            animation: fadeInUp 1s ease-out;
        }

        .animate-text-delay {
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Modern Section */
        .modern-section {
            background: transparent;
            padding: 5rem 2rem;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Intro Card */
        .intro-card {
            background: white;
            padding: 4rem;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            overflow: hidden;
        }

        .intro-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 50%);
            animation: rotate 30s linear infinite;
        }

        .card-icon {
            font-size: 4rem;
            color: var(--primary-gold);
            margin-bottom: 2rem;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .intro-text {
            font-size: 1.3rem;
            line-height: 1.8;
            color: var(--deep-purple);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .feature-card {
            background: linear-gradient(135deg, white 0%, rgba(255,248,225,0.8) 100%);
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .feature-card:hover::after {
            transform: scaleX(1);
        }

        .feature-card i {
            font-size: 2.5rem;
            color: var(--secondary-rose);
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            color: var(--deep-purple);
            margin-bottom: 0.5rem;
        }

        /* Image Showcase */
        .image-showcase {
            margin: 4rem 0;
        }

        .showcase-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,0.2);
        }

        .showcase-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .showcase-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(74,20,140,0.9) 0%, transparent 100%);
            padding: 3rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .showcase-container:hover .showcase-overlay {
            transform: translateY(0);
        }

        .overlay-content {
            color: white;
            text-align: center;
        }

        .overlay-content h3 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        /* Experience Timeline */
        .experience-section {
            margin: 5rem 0;
            text-align: center;
        }

        .experience-timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
            position: relative;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            opacity: 1 !important;
            visibility: visible !important;
        }

        .timeline-item {
            position: relative;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            opacity: 1 !important;
            visibility: visible !important;
            display: block !important;
        }

        .timeline-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .timeline-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .timeline-icon i {
            font-size: 2rem;
            color: white;
        }

        .timeline-content h3 {
            color: var(--deep-purple);
            margin-bottom: 0.5rem;
        }

        /* Gallery Section */
        .modern-gallery-section {
            background: linear-gradient(135deg, rgba(255,248,225,0.3) 0%, rgba(255,255,255,0.5) 100%);
            padding: 5rem 2rem;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .gallery-title {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .title-line {
            flex: 1;
            height: 2px;
            background: var(--gradient-primary);
            max-width: 100px;
        }

        .gallery-filters {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .filter-btn {
            padding: 0.8rem 2rem;
            background: white;
            border: 2px solid var(--primary-gold);
            border-radius: 50px;
            color: var(--deep-purple);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--gradient-primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .gallery-masonry {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            opacity: 1 !important;
            transform: translateY(0) !important;
        }

        .gallery-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery-item.large {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(74,20,140,0.8) 0%, rgba(212,175,55,0.8) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item:hover .gallery-item-overlay {
            opacity: 1;
        }

        .overlay-content {
            text-align: center;
            color: white;
        }

        .overlay-content i {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        /* Testimonials Section */
        .testimonials-section-hala {
            padding: 5rem 2rem;
            background: white;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card-hala {
            background: linear-gradient(135deg, rgba(255,248,225,0.5) 0%, white 100%);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            transition: all 0.3s ease;
        }

        .testimonial-card-hala:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .testimonial-quote {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 4rem;
            color: var(--primary-gold);
            opacity: 0.2;
            font-family: 'Playfair Display', serif;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark-text);
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-author h4 {
            margin: 0;
            color: var(--deep-purple);
        }

        .testimonial-author p {
            margin: 0;
            color: #999;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section-hala {
            position: relative;
            padding: 6rem 2rem;
            overflow: hidden;
        }

        .cta-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            overflow: hidden;
        }

        .cta-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            animation: float-shapes 20s infinite ease-in-out;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            left: -150px;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            right: -100px;
            animation-delay: -5s;
        }

        .shape-3 {
            width: 400px;
            height: 400px;
            top: 50%;
            right: 50%;
            animation-delay: -10s;
        }

        @keyframes float-shapes {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(100px, -100px) scale(1.1); }
            66% { transform: translate(-100px, 100px) scale(0.9); }
        }

        .cta-button-hala {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem 3rem;
            background: white;
            color: var(--deep-purple);
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .cta-button-hala:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .features-grid,
            .experience-timeline {
                grid-template-columns: 1fr;
            }

            .gallery-masonry {
                grid-template-columns: 1fr;
            }

            .gallery-item.large {
                grid-column: span 1;
                grid-row: span 1;
            }

            .testimonials-container {
                grid-template-columns: 1fr;
            }

            .hero-section-hala {
                height: 400px;
            }

            .intro-card {
                padding: 2rem;
            }

            .gallery-title {
                font-size: 2rem;
                gap: 1rem;
            }

            .filter-btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .page-title {
                font-size: 2rem;
            }

            .hero-title {
                font-size: 1.8rem;
            }

            .testimonial-card-hala {
                padding: 2rem;
            }

            .cta-button-hala {
                padding: 1.2rem 2rem;
                font-size: 1rem;
            }
        }

        /* Print Styles */
        @media print {
            .floating-elements,
            .hero-section-hala,
            .gallery,
            .cta-section-hala {
                display: none;
            }
        }

        /* Animation on scroll */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-gallery-item {
            transition: all 0.5s ease;
        }
        .hero-section-hala {
            position: relative;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, #FFF8E1 0%, #E8F5E8 100%);
            padding: 3rem 2rem;
        }
.hero-header-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: url('/static/images/hala.jpg') center center/cover no-repeat;
    z-index: 1;
    opacity: 0.25; /* כדי שלא יסתיר את הכיתוב */
}
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 100%;
            padding: 2rem 1rem;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
.hero-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    background: linear-gradient(90deg, #D4AF37, #C73E6D, #4A148C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: 1.3rem;
    color: #4A148C;
}

/* Gallery Container Styles for Hala Page */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-container .gallery-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 1 !important;
    transform: none !important;
}

.gallery-container .gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.gallery-container .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.gallery-container .gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }
}

        @media (max-width: 480px) {
            .gallery-container {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        /* Timeline Content Styles */
        .timeline-content p {
            color: #666;
            line-height: 1.6;
            font-size: 1rem;
            opacity: 1 !important;
            visibility: visible !important;
            display: block !important;
        }

        /* Back to Home Button */
        .back-to-home {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1001;
        }

        .back-button {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.5rem;
            background: var(--gradient-primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .back-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            color: white;
            text-decoration: none;
        }

        .back-button i {
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .back-to-home {
                top: 15px;
                right: 15px;
            }
            
            .back-button {
                padding: 0.6rem 1.2rem;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .back-button span {
                display: none;
            }
            
            .back-button {
                padding: 0.8rem;
                border-radius: 50%;
            }
        }

        /* Gallery Container Styles for Hala Page */
