.elementor-1132 .elementor-element.elementor-element-ad41068{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1132 .elementor-element.elementor-element-5be6cdf.elementor-element{--align-self:center;}.elementor-1132 .elementor-element.elementor-element-72a1aeb.elementor-element{--align-self:center;}.elementor-1132 .elementor-element.elementor-element-1efa40b{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-1132 .elementor-element.elementor-element-973e0b4{width:var( --container-widget-width, 50% );max-width:50%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:25px 25px 25px 25px;--container-widget-width:50%;--container-widget-flex-grow:0;}.elementor-1132 .elementor-element.elementor-element-973e0b4.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-1132 .elementor-element.elementor-element-94049cd{width:var( --container-widget-width, 60% );max-width:60%;--container-widget-width:60%;--container-widget-flex-grow:0;}.elementor-1132 .elementor-element.elementor-element-94049cd.elementor-element{--flex-grow:0;--flex-shrink:0;}@media(max-width:767px){.elementor-1132 .elementor-element.elementor-element-72a1aeb{text-align:center;}.elementor-1132 .elementor-element.elementor-element-72a1aeb .elementor-heading-title{font-size:17px;}.elementor-1132 .elementor-element.elementor-element-973e0b4{--container-widget-width:100%;--container-widget-flex-grow:0;width:var( --container-widget-width, 100% );max-width:100%;}.elementor-1132 .elementor-element.elementor-element-94049cd{--container-widget-width:100%;--container-widget-flex-grow:0;width:var( --container-widget-width, 100% );max-width:100%;}}/* Start custom CSS for shortcode, class: .elementor-element-973e0b4 *//* ==== עיצוב מודרני ומרשים לטופס Contact Form 7 ==== */

/* ==== משתנים גלובליים ==== */
:root {
    --primary-color: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --secondary-color: #6ee7b7;
    --success-color: #10b981;
    --error-color: #ef4444;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --bg-light: #f9fafb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(16, 185, 129, 0.15);
    --shadow-lg: 0 10px 40px rgba(16, 185, 129, 0.2);
    --radius: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==== Container של הטופס עם רקע מעוצב ==== */
.wpcf7 {
    direction: rtl;
    text-align: right;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0px 0px 8px 2px rgb(147 147 147 / 30%), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
}

/* ==== אפקט רקע אנימציה ==== */
.wpcf7::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

/* ==== Wrapper פנימי עם רקע לבן ==== */
.wpcf7 form {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    position: relative;
    z-index: 1;
}

/* ==== Grid של הטופס ==== */
.cf7-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 100%;
}

/* ==== שדה בודד עם אנימציה ==== */
.cf7-field {
    display: flex;
    flex-direction: column;
    position: relative;
    animation: slideUp 0.6s ease-out backwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==== עיכוב אנימציה לכל שדה ==== */
.cf7-field:nth-child(1) { animation-delay: 0.1s; }
.cf7-field:nth-child(2) { animation-delay: 0.2s; }
.cf7-field:nth-child(3) { animation-delay: 0.3s; }
.cf7-field:nth-child(4) { animation-delay: 0.4s; }
.cf7-field:nth-child(5) { animation-delay: 0.5s; }
.cf7-field:nth-child(6) { animation-delay: 0.6s; }

/* ==== שדה שתופס שתי עמודות ==== */
.cf7-field-full {
    grid-column: 1 / -1;
}

/* ==== Label מעוצב ==== */
.cf7-field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

/* ==== אייקון לפני ה-Label ==== */
.cf7-field label::before {
    content: '✦';
    color: var(--primary-color);
    font-size: 0.75rem;
    opacity: 0.7;
}

/* ==== כל שדות הקלט עם עיצוב מתקדם ==== */
.cf7-field input[type="text"],
.cf7-field input[type="email"],
.cf7-field input[type="tel"],
.cf7-field textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-light);
    direction: rtl;
    text-align: right;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

/* ==== Hover על שדות ==== */
.cf7-field input[type="text"]:hover,
.cf7-field input[type="email"]:hover,
.cf7-field input[type="tel"]:hover,
.cf7-field textarea:hover {
    border-color: var(--primary-light);
    background: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==== Focus על שדות עם אפקט מרשים ==== */
.cf7-field input[type="text"]:focus,
.cf7-field input[type="email"]:focus,
.cf7-field input[type="tel"]:focus,
.cf7-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    transform: translateY(-2px);
    box-shadow: 
        0 0 0 4px rgba(99, 102, 241, 0.1),
        var(--shadow-md);
}

/* ==== אנימציה של Label בזמן Focus ==== */
.cf7-field:focus-within label {
    color: var(--primary-color);
    transform: translateX(-3px);
}

/* ==== Textarea ==== */
.cf7-field textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

/* ==== Placeholder מעוצב ==== */
.cf7-field input::placeholder,
.cf7-field textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
    font-style: italic;
}

/* ==== כפתור שליחה מרשים ==== */
.cf7-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    animation: slideUp 0.6s ease-out 0.7s backwards;
}

.cf7-actions input[type="submit"] {
    padding: 18px 50px;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 
        var(--shadow-lg),
        0 0 20px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

/* ==== אפקט ברק על הכפתור ==== */
.cf7-actions input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cf7-actions input[type="submit"]:hover::before {
    left: 100%;
}

.cf7-actions input[type="submit"]:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 50px rgba(76, 175, 80, 0.4),
        0 0 30px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #388E3C 0%, #7CB342 100%);
}

.cf7-actions input[type="submit"]:active {
    transform: translateY(-2px) scale(0.98);
}

/* ==== הודעות שגיאה מעוצבות ==== */
.wpcf7-not-valid-tip {
    color: var(--error-color);
    font-size: 0.8rem;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: shake 0.4s ease-in-out;
}

.wpcf7-not-valid-tip::before {
    content: '⚠';
    font-size: 1rem;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.wpcf7-validation-errors {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: var(--error-color);
    border: 2px solid var(--error-color);
    border-radius: 12px;
    padding: 18px 24px;
    margin-top: 25px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.2);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==== הודעת הצלחה מרשימה ==== */
.wpcf7-mail-sent-ok {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: var(--success-color);
    border: 2px solid var(--success-color);
    border-radius: 12px;
    padding: 18px 24px;
    margin-top: 25px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
    animation: successPulse 0.6s ease-out;
    position: relative;
}

.wpcf7-mail-sent-ok::before {
    content: '✓';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
}

@keyframes successPulse {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==== שדה עם שגיאה ==== */
.wpcf7-not-valid {
    border-color: var(--error-color) !important;
    background: #fef2f2 !important;
    animation: shake 0.4s ease-in-out;
}

/* ==== Spinner מעוצב ==== */
.wpcf7 .ajax-loader {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==== אפקט גלאס מורפיזם (אופציונלי) ==== */
.wpcf7.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==== מצב Dark Mode (אופציונלי) ==== */
@media (prefers-color-scheme: dark) {
    .wpcf7.dark-mode form {
        background: #1f2937;
        color: #f9fafb;
    }
    
    .wpcf7.dark-mode .cf7-field label {
        color: #f9fafb;
    }
    
    .wpcf7.dark-mode .cf7-field input,
    .wpcf7.dark-mode .cf7-field textarea {
        background: #374151;
        color: #f9fafb;
        border-color: #4b5563;
    }
}

/* ==== ריספונסיב למובייל ==== */
@media (max-width: 768px) {
    .wpcf7 {
        padding: 30px 20px;
    }
    
    .wpcf7 form {
        padding: 30px 20px;
    }
    
    .cf7-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cf7-field-full {
        grid-column: 1;
    }
    
    .cf7-actions {
        grid-column: 1;
    }
    
    .cf7-actions input[type="submit"] {
        width: 100%;
        padding: 16px 40px;
    }
}

@media (max-width: 480px) {
    .wpcf7 {
        padding: 20px 15px;
        border-radius: 16px;
    }
    
    .wpcf7 form {
        padding: 25px 15px;
    }
    
    .cf7-field label {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .cf7-field input[type="text"],
    .cf7-field input[type="email"],
    .cf7-field input[type="tel"],
    .cf7-field textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .cf7-actions input[type="submit"] {
        font-size: 1rem;
    }
}

/* ==== אפקטים נוספים ==== */

/* הדגשת שדה פעיל */
.cf7-field input:not(:placeholder-shown),
.cf7-field textarea:not(:placeholder-shown) {
    border-color: var(--primary-light);
    background: white;
}

/* אנימציה חלקה לכל האלמנטים */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* שיפור נגישות */
.cf7-field input:focus-visible,
.cf7-field textarea:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* ==== הערות שימוש ==== */
/*
להוספת אפקט גלאס: הוסף class="glass-effect" ל-div של .wpcf7
להפעלת Dark Mode: הוסף class="dark-mode" ל-div של .wpcf7

דוגמה:
<div class="wpcf7 glass-effect">
    ...
</div>
*//* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-1efa40b *//* CONTACT SECTION */
.contact-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background Design */
.contact-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(76, 175, 80, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 195, 74, 0.05) 0%, transparent 50%);
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    bottom: -150px;
    left: -150px;
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    background: white;
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 38px;
    width: 20px;
    height: 20px;
    color: #999;
    pointer-events: none;
}

.form-icon svg {
    width: 100%;
    height: 100%;
}

.form-group textarea {
    resize: vertical;
    padding-left: 15px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.btn-submit svg {
    width: 20px;
    height: 20px;
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Info Cards */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
}

.card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    color: #4CAF50;
}

.info-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

.info-card a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-card a:hover {
    color: #388E3C;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: #4CAF50;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-link:hover {
    gap: 12px;
}

.card-link.whatsapp {
    background: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
}

.card-link.whatsapp svg {
    width: 18px;
    height: 18px;
}

/* Map */
.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.map-btn svg {
    width: 20px;
    height: 20px;
    color: #4CAF50;
}

/* Social Links */
.social-links {
    background: linear-gradient(135deg, #f8faf9, #e8f5e9);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.social-links h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
    transform: translateY(-3px);
    background: #4CAF50;
}

.social-icons a svg {
    width: 20px;
    height: 20px;
    color: #4CAF50;
    transition: all 0.3s ease;
}

.social-icons a:hover svg {
    color: white;
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        order: 2;
    }
    
    .contact-info-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .info-card {
        padding: 20px;
    }
}/* End custom CSS */