/* Copyright (C) 2025 MATO. All Rights Reserved. */

/* === GLOBAL STYLES === */
:root {
    /* צבעים ראשיים */
    --primary-color: #9b6a6c; /* ורוד עתיק - לדגשים ו-CTA */
    --beige-warm: #E1CEBF; /* בז' חם - לרקעים רגועים */

    /* צבעים משניים */
    --secondary-color: #8a7090; /* סגול עדין */
    --accent-color: #d1894a; /* כתום שלכת */

    /* טקסט */
    --text-color: #3a3a3a; /* אפור כהה לקריאות טובה */
    --light-text: #6c6159; /* חום-אפור מעודן */
    --text-on-primary: #ffffff; /* טקסט לבן על רקע כהה */
    --text-on-beige: #3a3a3a; /* טקסט כהה על רקע בהיר */

    /* רקעים */
    --bg-color: #E1CEBF; /* רקע ראשי - בז' חם */
    --section-bg-light: #E1CEBF; /* רקע בהיר */
    --section-bg-dark: #9b6a6c; /* רקע כהה */
    --cta-bg-color: #9b6a6c;

    /* עיצוב */
    --border-radius: 30px;
    --image-radius: 50%;
    --box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    --transition: all 0.5s ease;
    --spacing-unit: 8px;
    --container-width: 1200px;
    --navbar-height: 80px;

    /* צבעי עזר */
    --beige-light: #f2e8dc;
    --beige-medium: #e6d7c3;
    --autumn-gold: #daa45c;
    --autumn-brown: #8c6e5d;
    --autumn-green: #748e70;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Guttman Hatzvi', 'Rubik', 'Varela Round', 'Heebo', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.8; /* מרווח שורות גדול יותר */
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    letter-spacing: 0.3px; /* ריווח אותיות עדין */
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 25px; /* ריפוד צדדי גדול יותר */
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 25px;
    font-weight: 500; /* פונט קל יותר */
    color: var(--primary-color);
    font-family: 'Guttman Hatzvi', 'Gveret Levin', 'Rubik', 'Varela Round', sans-serif;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 52px;
    line-height: 1.3;
}

h2 {
    font-size: 38px;
    position: relative;
    margin-bottom: 40px;
    font-weight: 500; /* פחות כבד */
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px; /* קו עבה יותר */
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 20px;
    border-radius: 10px;
    opacity: 0.9; /* פחות שקיפות */
}

h3 {
    font-size: 24px;
}

p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--light-text);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    background: #9b6a6c; /* צבע ראשי מלא */
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600; /* בולט יותר */
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(155, 106, 108, 0.3);
    font-size: 16px;
    letter-spacing: 0.8px;
}

.btn:hover {
    background: #8a5a5c; /* גוון כהה יותר בהובר */
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(155, 106, 108, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #9b6a6c;
    border: 2px solid #9b6a6c;
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: #9b6a6c;
    color: white;
    border-color: #9b6a6c;
}

.section {
    padding: 100px 0; /* יותר מרווח בין סקציות */
    position: relative;
    overflow: hidden;
}

.section.color-section {
    background-color: var(--beige-light);
}

.section.color-section-alt {
    background-color: var(--beige-medium);
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(211, 188, 163, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2::after {
    margin: 15px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px; /* ריפוד גדול יותר */
    margin-bottom: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 7px; /* פס צבעוני בראש הכרטיס */
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

.service-title {
    margin-bottom: 15px;
}

.book {
    background-color: #9b6a6c; /* רקע ורוד עתיק */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.book::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239b6a6c' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 300px 300px;
    opacity: 0.4;
    z-index: 0;
}

.book-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.book-image {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.book-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--accent-color);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.book-image img {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.book-text {
    flex: 0 0 50%;
    position: relative;
    color: white; /* טקסט לבן על רקע כהה */
}

.book-text h2 {
    position: relative;
    display: inline-block;
    color: white; /* כותרת לבנה */
}

.book-text p {
    color: rgba(255, 255, 255, 0.95); /* טקסט לבן עם שקיפות קלה */
}

.book-text h2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    bottom: 15px;
    left: 0;
    background-color: rgba(255, 255, 255, 0.3); /* דגש לבן */
    z-index: -1;
    transform: skewX(-5deg);
}

.amazon-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #FF9900 0%, #FFB800 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.2);
}

.amazon-button:hover {
    background: linear-gradient(135deg, #FFB800 0%, #FF9900 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.3);
}

.amazon-button i {
    margin-right: 12px;
    font-size: 20px;
}

.testimonials {
    background-color: var(--section-bg-color);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
}

.testimonial-author-image i {
    font-size: 28px;
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    margin-bottom: 8px;
    font-size: 18px;
    margin-top: 3px;
}

.testimonial-author-info p {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 0;
}

.contact {
    background-color: var(--section-bg-color);
}

.contact-content {
    display: flex;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    padding-left: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-left: 15px;
    width: 50px;
    height: 50px;
    background-color: rgba(125, 86, 173, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-info-item:hover .contact-info-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.contact-info-text h4 {
    margin-bottom: 5px;
}

.contact-info-text p {
    margin-bottom: 0;
    color: var(--light-text);
}

.contact-form {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    flex: 0 0 55%;
    max-width: 55%;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(155, 106, 108, 0.2);
    border-radius: 15px;
    background-color: rgba(249, 244, 239, 0.5);
    transition: var(--transition);
    font-family: 'Rubik', sans-serif;
    color: var(--text-color);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(155, 106, 108, 0.1);
}

textarea {
    resize: vertical;
    min-height: 150px;
    border-radius: 20px;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin-top: 50px;
}

.footer-content p {
    margin-bottom: 0;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: #fff;
    font-size: 22px;
    margin: 0 10px;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: #fff;
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-text h2::after {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-content, .book-content {
        flex-direction: column;
    }
    
    .about-image, .book-image {
        margin-left: 0;
        margin-bottom: 30px;
    }
    
    .about-text, .book-text {
        padding-right: 0;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info {
        padding-left: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu - Opens Below Navbar */
    .navbar-links {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: calc(100vh - var(--navbar-height));
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 30px 20px;
        border-radius: 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .navbar-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar-links li {
        margin: 0 0 15px 0;
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .navbar-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-links.active li:nth-child(1) { transition-delay: 0.05s; }
    .navbar-links.active li:nth-child(2) { transition-delay: 0.1s; }
    .navbar-links.active li:nth-child(3) { transition-delay: 0.15s; }
    .navbar-links.active li:nth-child(4) { transition-delay: 0.2s; }
    .navbar-links.active li:nth-child(5) { transition-delay: 0.25s; }
    .navbar-links.active li:nth-child(6) { transition-delay: 0.3s; }
    .navbar-links.active li:nth-child(7) { transition-delay: 0.35s; }

    .navbar-links a {
        font-size: 18px;
        font-weight: 500;
        padding: 14px 20px;
        display: block;
        border-radius: 12px;
        transition: all 0.3s ease;
        color: var(--text-color);
    }

    .navbar-links a:hover {
        background: var(--primary-color);
        color: white;
    }

    .navbar-toggle {
        display: block;
    }

    .services-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Backdrop Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(3px);
    pointer-events: none;
}

body.menu-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Modern Hamburger Animation */
.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-load {
    opacity: 0;
}

.fade-in-up {
    animation: fade-in-up 0.8s forwards;
}

.fade-in-left {
    animation: fade-in-left 0.8s forwards;
}

.fade-in-right {
    animation: fade-in-right 0.8s forwards;
}

.scale-in {
    animation: scale-in 0.8s forwards;
}

.slide-in-top {
    animation: fade-in-up 0.5s forwards;
}


.modern-shadow {
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.05), 
                0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card, .testimonial, .navbar, .contact-form {
    transition: all 0.3s ease;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.05), 
                0 10px 30px rgba(0, 0, 0, 0.08);
}

.section, .cta-section {
    position: relative;
    z-index: 1;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar {
    background: rgba(249, 244, 239, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: none;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(155, 106, 108, 0.05);
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;
}

.navbar-links {
    display: flex;
    list-style: none;
}

.navbar-links li {
    margin-left: 30px;
}

.navbar-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    padding: 5px 0;
    margin: 0 15px;
    position: relative;
    transition: var(--transition);
    font-size: 17px;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 10px;
}

.navbar-links a:hover::after {
    width: 100%;
}

.navbar-toggle {
    display: none !important;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    background: transparent;
    border: none;
    width: 32px;
    height: 26px;
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
    }
}

.navbar-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hero {
    background: #E1CEBF;
    padding: 180px 0 150px; /* יותר מרווח */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239b6a6c' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 300px 300px;
    opacity: 0.6;
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px; /* מרווח גדול יותר בין האלמנטים */
}

.hero-text {
    flex: 0 0 45%;
    max-width: 45%;
}

.hero-text h1 {
    margin-bottom: 30px;
    font-size: 52px; /* גודל פונט גדול יותר */
    font-weight: 700; /* בולט יותר */
    position: relative;
    display: inline-block;
    padding: 10px 0;
    color: #9b6a6c; /* צבע ראשי - ורוד עתיק */
}

.hero-text h1::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 15px;
    bottom: 20px;
    left: 0;
    background-color: rgba(155, 106, 108, 0.2); /* גוון עדין מהצבע הראשי */
    z-index: -1;
    transform: skewX(-5deg);
}

.subtitle {
    font-size: 20px;
    color: #3a3a3a; /* טקסט כהה לקריאות טובה */
    margin-bottom: 40px;
    line-height: 1.6;
    position: relative;
    padding-right: 20px;
    border-right: 3px solid #9b6a6c; /* גבול בצבע הראשי */
}

.hero-buttons {
    margin-top: 40px;
}

.hero-image {
    flex: 0 0 45%;
    max-width: 45%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(155, 106, 108, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    border-radius: 35% 65% 65% 35% / 40% 30% 70% 60%;
    animation: morphShape 12s ease-in-out infinite alternate;
}

@keyframes morphShape {
    0% {
        border-radius: 35% 65% 65% 35% / 40% 30% 70% 60%;
    }
    50% {
        border-radius: 55% 45% 35% 65% / 60% 50% 50% 40%;
    }
    100% {
        border-radius: 45% 55% 55% 45% / 30% 60% 40% 70%;
    }
}

.hero-image img {
    width: 450px;
    height: 450px;
    object-fit: cover;
    object-position: top;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(155, 106, 108, 0.2);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 2;
    position: relative;
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.25);
}

.cta-section {
    background-color: var(--cta-bg-color);
    color: white;
    text-align: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin: 50px 20px;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content h2::after {
    background-color: white;
    margin: 15px auto 0;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: white;
    color: var(--primary-color);
}

.cta-button:hover {
    background-color: var(--bg-color);
    color: var(--primary-color);
}

.page-wrapper {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-color);
    overflow-x: hidden;
    position: relative;
}

.bg-shape {
    display: none;
}

.service-card, .testimonial {
    background-color: var(--bg-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.loading-overlay {
    background-color: var(--bg-color);
}

.hero-image img:hover,
.about-image img:hover,
.book-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@keyframes rotate-image {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

.testimonial-author-image:hover img {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(125, 86, 173, 0.2);
}

/* הוספה למעלה - כל התמונות באתר יהיו בעיגול */
.hero-image img, 
.about-image img,
.testimonial-author-image img {
    border-radius: 50% !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* אפקט תמונה בעת ריחוף */
.hero-image img:hover, 
.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* האלמנטים עם סגנון הקרדנשיאלס */
.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.credential {
    background-color: rgba(125, 86, 173, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.credential:hover {
    background-color: rgba(125, 86, 173, 0.2);
    transform: translateY(-3px);
}

.credential i {
    color: var(--primary-color);
    font-size: 18px;
}

/* פרטי הספר בעיצוב מעוגל */
.book-details {
    margin: 25px 0;
}

.book-detail {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
    color: white; /* טקסט לבן */
}

.book-detail i {
    color: white;
    font-size: 18px;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2); /* רקע לבן שקוף */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* אזור מאמרים */
.articles-section {
    padding: 80px 0;
    background-color: var(--section-bg-color);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .article-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
/* Copyright (C) 2025 MATO. All Rights Reserved. */

/* === GLOBAL STYLES === */
:root {
    /* צבעים ראשיים */
    --primary-color: #9b6a6c; /* ורוד עתיק - לדגשים ו-CTA */
    --beige-warm: #E1CEBF; /* בז' חם - לרקעים רגועים */

    /* צבעים משניים */
    --secondary-color: #8a7090; /* סגול עדין */
    --accent-color: #d1894a; /* כתום שלכת */

    /* טקסט */
    --text-color: #3a3a3a; /* אפור כהה לקריאות טובה */
    --light-text: #6c6159; /* חום-אפור מעודן */
    --text-on-primary: #ffffff; /* טקסט לבן על רקע כהה */
    --text-on-beige: #3a3a3a; /* טקסט כהה על רקע בהיר */

    /* רקעים */
    --bg-color: #E1CEBF; /* רקע ראשי - בז' חם */
    --section-bg-light: #E1CEBF; /* רקע בהיר */
    --section-bg-dark: #9b6a6c; /* רקע כהה */
    --cta-bg-color: #9b6a6c;

    /* עיצוב */
    --border-radius: 30px;
    --image-radius: 50%;
    --box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    --transition: all 0.5s ease;
    --spacing-unit: 8px;
    --container-width: 1200px;
    --navbar-height: 80px;

    /* צבעי עזר */
    --beige-light: #f2e8dc;
    --beige-medium: #e6d7c3;
    --autumn-gold: #daa45c;
    --autumn-brown: #8c6e5d;
    --autumn-green: #748e70;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Guttman Hatzvi', 'Rubik', 'Varela Round', 'Heebo', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.8; /* מרווח שורות גדול יותר */
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    letter-spacing: 0.3px; /* ריווח אותיות עדין */
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 25px; /* ריפוד צדדי גדול יותר */
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 25px;
    font-weight: 500; /* פונט קל יותר */
    color: var(--primary-color);
    font-family: 'Guttman Hatzvi', 'Gveret Levin', 'Rubik', 'Varela Round', sans-serif;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 52px;
    line-height: 1.3;
}

h2 {
    font-size: 38px;
    position: relative;
    margin-bottom: 40px;
    font-weight: 500; /* פחות כבד */
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px; /* קו עבה יותר */
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 20px;
    border-radius: 10px;
    opacity: 0.9; /* פחות שקיפות */
}

h3 {
    font-size: 24px;
}

p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--light-text);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    background: #9b6a6c; /* צבע ראשי מלא */
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600; /* בולט יותר */
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(155, 106, 108, 0.3);
    font-size: 16px;
    letter-spacing: 0.8px;
}

.btn:hover {
    background: #8a5a5c; /* גוון כהה יותר בהובר */
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(155, 106, 108, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #9b6a6c;
    border: 2px solid #9b6a6c;
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: #9b6a6c;
    color: white;
    border-color: #9b6a6c;
}

.section {
    padding: 100px 0; /* יותר מרווח בין סקציות */
    position: relative;
    overflow: hidden;
}

.section.color-section {
    background-color: var(--beige-light);
}

.section.color-section-alt {
    background-color: var(--beige-medium);
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(211, 188, 163, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2::after {
    margin: 15px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px; /* ריפוד גדול יותר */
    margin-bottom: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 7px; /* פס צבעוני בראש הכרטיס */
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

.service-title {
    margin-bottom: 15px;
}

.book {
    background-color: #9b6a6c; /* רקע ורוד עתיק */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.book::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239b6a6c' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 300px 300px;
    opacity: 0.4;
    z-index: 0;
}

.book-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.book-image {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.book-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--accent-color);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.book-image img {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.book-text {
    flex: 0 0 50%;
    position: relative;
    color: white; /* טקסט לבן על רקע כהה */
}

.book-text h2 {
    position: relative;
    display: inline-block;
    color: white; /* כותרת לבנה */
}

.book-text p {
    color: rgba(255, 255, 255, 0.95); /* טקסט לבן עם שקיפות קלה */
}

.book-text h2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    bottom: 15px;
    left: 0;
    background-color: rgba(255, 255, 255, 0.3); /* דגש לבן */
    z-index: -1;
    transform: skewX(-5deg);
}

.amazon-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #FF9900 0%, #FFB800 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.2);
}

.amazon-button:hover {
    background: linear-gradient(135deg, #FFB800 0%, #FF9900 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.3);
}

.amazon-button i {
    margin-right: 12px;
    font-size: 20px;
}

.testimonials {
    background-color: var(--section-bg-color);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
}

.testimonial-author-image i {
    font-size: 28px;
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    margin-bottom: 8px;
    font-size: 18px;
    margin-top: 3px;
}

.testimonial-author-info p {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 0;
}

.contact {
    background-color: var(--section-bg-color);
}

.contact-content {
    display: flex;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    padding-left: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-left: 15px;
    width: 50px;
    height: 50px;
    background-color: rgba(125, 86, 173, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-info-item:hover .contact-info-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.contact-info-text h4 {
    margin-bottom: 5px;
}

.contact-info-text p {
    margin-bottom: 0;
    color: var(--light-text);
}

.contact-form {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    flex: 0 0 55%;
    max-width: 55%;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(155, 106, 108, 0.2);
    border-radius: 15px;
    background-color: rgba(249, 244, 239, 0.5);
    transition: var(--transition);
    font-family: 'Rubik', sans-serif;
    color: var(--text-color);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(155, 106, 108, 0.1);
}

textarea {
    resize: vertical;
    min-height: 150px;
    border-radius: 20px;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin-top: 50px;
}

.footer-content p {
    margin-bottom: 0;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: #fff;
    font-size: 22px;
    margin: 0 10px;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: #fff;
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-text h2::after {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-content, .book-content {
        flex-direction: column;
    }
    
    .about-image, .book-image {
        margin-left: 0;
        margin-bottom: 30px;
    }
    
    .about-text, .book-text {
        padding-right: 0;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info {
        padding-left: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu - Opens Below Navbar */
    .navbar-links {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: calc(100vh - var(--navbar-height));
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 30px 20px;
        border-radius: 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .navbar-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar-links li {
        margin: 0 0 15px 0;
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .navbar-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-links.active li:nth-child(1) { transition-delay: 0.05s; }
    .navbar-links.active li:nth-child(2) { transition-delay: 0.1s; }
    .navbar-links.active li:nth-child(3) { transition-delay: 0.15s; }
    .navbar-links.active li:nth-child(4) { transition-delay: 0.2s; }
    .navbar-links.active li:nth-child(5) { transition-delay: 0.25s; }
    .navbar-links.active li:nth-child(6) { transition-delay: 0.3s; }
    .navbar-links.active li:nth-child(7) { transition-delay: 0.35s; }

    .navbar-links a {
        font-size: 18px;
        font-weight: 500;
        padding: 14px 20px;
        display: block;
        border-radius: 12px;
        transition: all 0.3s ease;
        color: var(--text-color);
    }

    .navbar-links a:hover {
        background: var(--primary-color);
        color: white;
    }

    .navbar-toggle {
        display: block;
    }

    .services-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Backdrop Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(3px);
    pointer-events: none;
}

body.menu-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Modern Hamburger Animation */
.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-load {
    opacity: 0;
}

.fade-in-up {
    animation: fade-in-up 0.8s forwards;
}

.fade-in-left {
    animation: fade-in-left 0.8s forwards;
}

.fade-in-right {
    animation: fade-in-right 0.8s forwards;
}

.scale-in {
    animation: scale-in 0.8s forwards;
}

.slide-in-top {
    animation: fade-in-up 0.5s forwards;
}


.modern-shadow {
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.05), 
                0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card, .testimonial, .navbar, .contact-form {
    transition: all 0.3s ease;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.05), 
                0 10px 30px rgba(0, 0, 0, 0.08);
}

.section, .cta-section {
    position: relative;
    z-index: 1;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar {
    background: rgba(249, 244, 239, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: none;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(155, 106, 108, 0.05);
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;
}

.navbar-links {
    display: flex;
    list-style: none;
}

.navbar-links li {
    margin-left: 30px;
}

.navbar-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    padding: 5px 0;
    margin: 0 15px;
    position: relative;
    transition: var(--transition);
    font-size: 17px;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 10px;
}

.navbar-links a:hover::after {
    width: 100%;
}

.navbar-toggle {
    display: none !important;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    background: transparent;
    border: none;
    width: 32px;
    height: 26px;
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
    }
}

.navbar-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hero {
    background: #E1CEBF;
    padding: 180px 0 150px; /* יותר מרווח */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239b6a6c' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 300px 300px;
    opacity: 0.6;
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px; /* מרווח גדול יותר בין האלמנטים */
}

.hero-text {
    flex: 0 0 45%;
    max-width: 45%;
}

.hero-text h1 {
    margin-bottom: 30px;
    font-size: 52px; /* גודל פונט גדול יותר */
    font-weight: 700; /* בולט יותר */
    position: relative;
    display: inline-block;
    padding: 10px 0;
    color: #9b6a6c; /* צבע ראשי - ורוד עתיק */
}

.hero-text h1::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 15px;
    bottom: 20px;
    left: 0;
    background-color: rgba(155, 106, 108, 0.2); /* גוון עדין מהצבע הראשי */
    z-index: -1;
    transform: skewX(-5deg);
}

.subtitle {
    font-size: 20px;
    color: #3a3a3a; /* טקסט כהה לקריאות טובה */
    margin-bottom: 40px;
    line-height: 1.6;
    position: relative;
    padding-right: 20px;
    border-right: 3px solid #9b6a6c; /* גבול בצבע הראשי */
}

.hero-buttons {
    margin-top: 40px;
}

.hero-image {
    flex: 0 0 45%;
    max-width: 45%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(155, 106, 108, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    border-radius: 35% 65% 65% 35% / 40% 30% 70% 60%;
    animation: morphShape 12s ease-in-out infinite alternate;
}

@keyframes morphShape {
    0% {
        border-radius: 35% 65% 65% 35% / 40% 30% 70% 60%;
    }
    50% {
        border-radius: 55% 45% 35% 65% / 60% 50% 50% 40%;
    }
    100% {
        border-radius: 45% 55% 55% 45% / 30% 60% 40% 70%;
    }
}

.hero-image img {
    width: 450px;
    height: 450px;
    object-fit: cover;
    object-position: top;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(155, 106, 108, 0.2);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 2;
    position: relative;
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.25);
}

.cta-section {
    background-color: var(--cta-bg-color);
    color: white;
    text-align: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin: 50px 20px;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content h2::after {
    background-color: white;
    margin: 15px auto 0;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: white;
    color: var(--primary-color);
}

.cta-button:hover {
    background-color: var(--bg-color);
    color: var(--primary-color);
}

.page-wrapper {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-color);
    overflow-x: hidden;
    position: relative;
}

.bg-shape {
    display: none;
}

.service-card, .testimonial {
    background-color: var(--bg-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.loading-overlay {
    background-color: var(--bg-color);
}

.hero-image img:hover,
.about-image img:hover,
.book-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@keyframes rotate-image {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

.testimonial-author-image:hover img {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(125, 86, 173, 0.2);
}

/* הוספה למעלה - כל התמונות באתר יהיו בעיגול */
.hero-image img, 
.about-image img,
.testimonial-author-image img {
    border-radius: 50% !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* אפקט תמונה בעת ריחוף */
.hero-image img:hover, 
.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* האלמנטים עם סגנון הקרדנשיאלס */
.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.credential {
    background-color: rgba(125, 86, 173, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.credential:hover {
    background-color: rgba(125, 86, 173, 0.2);
    transform: translateY(-3px);
}

.credential i {
    color: var(--primary-color);
    font-size: 18px;
}

/* פרטי הספר בעיצוב מעוגל */
.book-details {
    margin: 25px 0;
}

.book-detail {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
    color: white; /* טקסט לבן */
}

.book-detail i {
    color: white;
    font-size: 18px;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2); /* רקע לבן שקוף */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* אזור מאמרים */
.articles-section {
    padding: 80px 0;
    background-color: var(--section-bg-color);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .article-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .article-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-icon {
    margin: 0 auto 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-light);
    color: var(--primary-color);
    font-size: 36px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* === טסטימוניאלס === */
.testimonial {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(211, 188, 163, 0.2) 0%, transparent 70%);
    border-radius: 0 30px 0 100%;
    z-index: 0;
}

.testimonial::after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 100px;
    color: var(--beige-medium);
    font-family: serif;
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(155, 106, 108, 0.15);
}

.testimonial-text {
    margin-bottom: 30px;
    position: relative;
    padding-top: 10px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
    z-index: 1;
}

/* === מאמרים === */
.article-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--box-shadow);
    padding: 30px;
    border: 1px solid rgba(155, 106, 108, 0.05);
}

.article-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.article-image i {
    font-size: 64px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.article-item:hover .article-image {
    box-shadow: 0 10px 25px rgba(155, 106, 108, 0.25);
    transform: translateY(-8px);
}

.article-item:hover .article-image i {
    transform: scale(1.15);
}

.article-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.article-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 8px;
}

.article-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.article-item:hover .article-link::after {
    width: 100%;
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }
}

.about-image img {
    max-width: 100%;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* סגנונות לתמונות שנטענו */
.loaded {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image img,
.about-image img,
.article-image img {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.article-item:hover .article-image img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 86, 173, 0.25);
}

/* התאמות נוספות למובייל */
@media (max-width: 576px) {
    .hero-image img,
    .about-image img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
        border-radius: 50% !important;
        object-fit: cover;
        object-position: top;
    }

    .article-image {
        width: 160px;
        height: 160px;
    }
}

/* עדכון לסגנון אודות ללא תמונה */
.about-content-full .about-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.about-content-full .credentials {
    justify-content: center;
    margin-top: 30px;
}

.about-content-full .about-text h2::after {
    margin-right: auto;
    margin-left: auto;
}

/* טקסטים עם אפקט הופעה */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1, .hero-text p, .hero-buttons {
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* אנימציה להופעת אלמנטים בגלילה */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === מעברים נוספים === */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.initial-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 20px;
    transition: transform 1.5s ease;
}

.loader-logo img {
    height: auto;
    max-width: 250px;
    animation: logoReveal 2s ease forwards;
    opacity: 0;
}

.loader-tagline {
    font-family: 'Gveret Levin', 'Rubik', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: textFadeIn 1.5s ease 0.5s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* === גיבור === */
.hero-text h1 {
    opacity: 0;
}

.hero-text .subtitle {
    opacity: 0;
}

.hero-buttons {
    opacity: 0;
}

/* === תמונת גיבור === */
.hero-image::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 215, 202, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(155, 106, 108, 0.2);
}

/* === ניווט === */
.navbar {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, padding 0.8s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 244, 239, 0.95);
    box-shadow: 0 5px 20px rgba(155, 106, 108, 0.08);
    padding: 12px 0;
}

.navbar-links a {
    position: relative;
    overflow: hidden;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0.8;
}

.navbar-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* === שירותים === */
.service-card {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.8s cubic-bezier(0.25, 0.1,, 0 . 2 5 , 1 ) ; } 
 
 

/* Mobile Navigation Toggle Animation */
.navbar-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Close on Link Click */
@media (max-width: 768px) {
    .navbar-links li a {
        display: block;
        padding: 15px 20px;
        width: 100%;
    }
}

