/* Enhanced CSS for Livyat Chen Jewelry Website - עיצוב משופר */

/* CSS Variables for consistent luxury theme - פלטת צבעים משופרת */
:root {
    /* צבעי זהב עשירים ומעודנים */
    --primary-gold: #C9A961;
    --secondary-gold: #B8941F;
    --dark-gold: #996F1A;
    --accent-gold: #E6CC7A;
    --light-gold: #F5E6A8;
    --luxury-copper: #CD7F32;

    /* צבעי טקסט טבעיים ונעימים */
    --text-primary: #2C2C2C;
    --text-secondary: #5A5A5A;
    --text-light: #8B8B8B;
    --text-elegant: #3D3D3D;

    /* רקעים וגוונים חמים */
    --background-cream: #FBF8F2;
    --background-warm: #F7F1E8;
    --white-soft: #FEFEFE;
    --ivory: #FFFFF0;

    /* צללים עדינים וטבעיים */
    --shadow-light: rgba(201, 169, 97, 0.15);
    --shadow-medium: rgba(201, 169, 97, 0.25);
    --shadow-dark: rgba(60, 60, 60, 0.15);
    --shadow-warm: rgba(184, 148, 31, 0.2);

    /* גרדיינטים מעודנים */
    --gradient-gold: linear-gradient(135deg, #C9A961 0%, #B8941F 50%, #996F1A 100%);
    --gradient-cream: linear-gradient(135deg, #FBF8F2 0%, #F7F1E8 100%);
    --gradient-luxury: linear-gradient(45deg, #C9A961, #E6CC7A, #B8941F);
    --gradient-elegant: linear-gradient(135deg, #FEFEFE 0%, #F7F1E8 100%);
}

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', 'Assistant', sans-serif;
    direction: rtl;
    background: var(--gradient-cream);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    border: 1px solid var(--accent-gold);
}

.language-selector select {
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-gold);
    cursor: pointer;
    outline: none;
}

/* Multi-language content */
.lang-content {
    display: none;
}

.lang-content.active {
    display: block;
}

.modal-lang-content {
    display: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gold);
}

/* Animated Background Particles System */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 15s infinite linear;
}

.particle:nth-child(odd) {
    background: var(--accent-gold);
    animation-duration: 20s;
    opacity: 0.15;
}

.particle:nth-child(3n) {
    width: 2px;
    height: 2px;
    background: var(--luxury-copper);
    animation-duration: 25s;
    opacity: 0.1;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.2;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Main Container with Glassmorphism Effect */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(15px);
    background: rgba(254, 254, 254, 0.9);
    box-shadow:
        0 8px 32px var(--shadow-light),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid var(--shadow-light);
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-luxury);
    opacity: 0.6;
}

/* Luxury Header with Advanced Animations */
header {
    background: var(--gradient-gold);
    color: var(--white-soft);
    padding: 80px 40px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Animated Pattern Overlay */
header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px, 20px 20px;
    animation: shimmer 25s linear infinite;
    pointer-events: none;
}

/* Luxury shimmer animation */
@keyframes shimmer {
    0% {
        transform: translateX(-100px) translateY(-100px) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        opacity: 0.1;
    }

    100% {
        transform: translateX(100px) translateY(100px) rotate(360deg);
        opacity: 0.3;
    }
}

/* Logo Container with Premium Effects */
.logo-container {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.logo-placeholder {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    background: var(--gradient-elegant);
    color: var(--primary-gold);
    padding: 25px 50px;
    border-radius: 20px;
    display: inline-block;
    box-shadow:
        0 15px 35px rgba(44, 44, 44, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 3px var(--accent-gold);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
}

/* Premium shine effect */
.logo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-placeholder:hover::before {
    left: 100%;
}

.logo-placeholder:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(44, 44, 44, 0.25),
        0 10px 20px var(--shadow-warm),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Main Title with Luxury Typography */
.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow:
        2px 2px 4px rgba(44, 44, 44, 0.3),
        0 0 20px rgba(255, 255, 255, 0.3);
    animation: titlePulse 4s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #ffffff, #f5f5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes titlePulse {
    0% {
        text-shadow: 2px 2px 4px rgba(44, 44, 44, 0.3), 0 0 10px rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }

    100% {
        text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.4);
        transform: scale(1.02);
    }
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(44, 44, 44, 0.2);
    color: var(--white-soft);
}

/* Main Content Layout */
main {
    flex: 1;
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.content-section {
    margin-bottom: 100px;
    position: relative;
}

/* Enhanced Description Section */
.description {
    background: var(--white-soft);
    padding: 60px;
    border-radius: 25px;
    box-shadow:
        0 25px 70px var(--shadow-light),
        0 10px 30px var(--shadow-dark);
    border: 1px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.description:hover {
    transform: translateY(-5px);
    box-shadow:
        0 35px 90px var(--shadow-medium),
        0 15px 40px var(--shadow-dark);
}

.description::before {
    content: '💎';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    opacity: 0.15;
    animation: rotate 15s linear infinite;
}

.description::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: var(--gradient-gold);
    border-radius: 120px 0 25px 0;
    opacity: 0.08;
}

.description p {
    font-size: 1.35rem;
    line-height: 2.2;
    margin-bottom: 30px;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.description p strong {
    color: var(--dark-gold);
    font-weight: 600;
}

/* Premium CTA Button */
.about-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 18px 35px;
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 2;
    background: transparent;
}

.about-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.about-link:hover::before {
    left: 0;
}

.about-link:hover {
    color: var(--white-soft);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px var(--shadow-medium);
    border-color: transparent;
}

/* Premium Subscription Section */
.subscribe-section {
    background: var(--gradient-gold);
    padding: 80px 60px;
    border-radius: 30px;
    text-align: center;
    color: var(--white-soft);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px var(--shadow-warm);
}

.subscribe-section::before {
    content: '💎';
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3.5rem;
    opacity: 0.2;
    animation: rotate 12s linear infinite;
}

.subscribe-section::after {
    content: '✨';
    position: absolute;
    bottom: 30px;
    left: 40px;
    font-size: 2.5rem;
    opacity: 0.2;
    animation: bounce 3s ease-in-out infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

.subscribe-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(44, 44, 44, 0.3);
    position: relative;
    z-index: 2;
}

.subscribe-section p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* Enhanced Form Styling */
.subscribe-form {
    display: flex;
    gap: 25px;
    max-width: 550px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.email-input {
    flex: 1;
    min-width: 280px;
    padding: 20px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.15rem;
    text-align: right;
    background: var(--white-soft);
    color: var(--text-primary);
    box-shadow:
        inset 0 2px 10px rgba(44, 44, 44, 0.1),
        0 5px 20px rgba(44, 44, 44, 0.1);
    transition: all 0.4s ease;
    font-family: inherit;
    border: 2px solid transparent;
}

.email-input:focus {
    outline: none;
    box-shadow:
        inset 0 2px 10px rgba(44, 44, 44, 0.1),
        0 0 0 4px rgba(255, 255, 255, 0.3),
        0 10px 30px rgba(44, 44, 44, 0.15);
    transform: translateY(-3px) scale(1.02);
    border-color: var(--accent-gold);
}

.email-input::placeholder {
    color: var(--text-light);
    font-style: italic;
}

.submit-btn {
    background: var(--white-soft);
    color: var(--primary-gold);
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(44, 44, 44, 0.2);
    font-family: inherit;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.submit-btn:hover::before {
    left: 0;
}

.submit-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(44, 44, 44, 0.3);
    color: var(--white-soft);
    border-color: var(--accent-gold);
}

.submit-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.form-message {
    margin-top: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    min-height: 35px;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(44, 44, 44, 0.3);
}

/* Enhanced Contact Section */
.contact-section {
    background: var(--white-soft);
    padding: 70px 60px;
    border-radius: 25px;
    box-shadow:
        0 25px 70px var(--shadow-light),
        0 10px 30px var(--shadow-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--accent-gold);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--gradient-gold);
    border-radius: 50%;
    opacity: 0.08;
    animation: floatRotate 20s ease-in-out infinite;
}

@keyframes floatRotate {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(120deg);
    }

    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 40px;
    position: relative;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* Contact Information Grid */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

.contact-item {
    padding: 35px 25px;
    background: var(--gradient-elegant);
    border-radius: 20px;
    border: 1px solid var(--accent-gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 50px var(--shadow-medium),
        0 10px 30px var(--shadow-dark);
    background: var(--white-soft);
}

.contact-item strong {
    color: var(--primary-gold);
    display: block;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-item a:hover {
    color: var(--primary-gold);
    transform: translateX(-5px);
}

.contact-item small {
    display: block;
    margin-top: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
}

/* Navigation Buttons */
.navigation-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: var(--gradient-gold);
    color: var(--white-soft);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-elegant);
    transition: left 0.4s ease;
    z-index: -1;
}

.nav-btn:hover::before {
    left: 0;
}

.nav-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px var(--shadow-medium);
    color: var(--primary-gold);
}

/* Enhanced Footer */
footer {
    background: var(--gradient-elegant);
    color: var(--text-primary);
    padding: 50px 40px;
    text-align: center;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--accent-gold);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
}

footer p {
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

/* Enhanced Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.85);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: modalFadeIn 0.3s ease-out;
    overflow-y: auto;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }

    to {
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

.modal-content {
    background: var(--white-soft);
    padding: 60px;
    border-radius: 30px;
    max-width: 750px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow:
        0 40px 100px rgba(44, 44, 44, 0.4),
        0 20px 50px var(--shadow-warm);
    animation: modalSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: right;
    border: 1px solid var(--accent-gold);
    margin: auto;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.8) translateY(-80px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 2.8rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.modal-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.modal-content p {
    font-size: 1.25rem;
    line-height: 2.1;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.modal-content p strong {
    color: var(--dark-gold);
    font-weight: 600;
}

/* Enhanced Close Button */
.close-button {
    position: absolute;
    left: 25px;
    top: 25px;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--background-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.close-button:hover {
    background: var(--primary-gold);
    color: var(--white-soft);
    transform: rotate(90deg) scale(1.1);
    border-color: var(--white-soft);
    box-shadow: 0 5px 20px var(--shadow-medium);
}

/* Enhanced WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 75px;
    height: 75px;
    bottom: 35px;
    left: 35px;
    background: linear-gradient(135deg, #25D366, #128C7E, #075E54);
    color: var(--white-soft);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        0 10px 30px rgba(37, 211, 102, 0.4),
        0 5px 15px var(--shadow-dark);
    z-index: 1500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsappPulse 3s infinite;
    text-decoration: none;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 5px 15px var(--shadow-dark);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6), 0 8px 25px var(--shadow-dark);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 5px 15px var(--shadow-dark);
        transform: scale(1);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow:
        0 20px 50px rgba(37, 211, 102, 0.7),
        0 10px 30px var(--shadow-dark);
    animation: none;
}

.whatsapp-float svg {
    transition: transform 0.3s ease;
}

.whatsapp-float:hover svg {
    transform: scale(1.1);
}

/* Account Links Button - עיצוב משופר לכפתור איזור אישי */
.account-links {
    position: fixed;
    top: 20px;
    right: 80px;
    z-index: 1000;
}

.account-btn {
    background: var(--gradient-gold) !important;
    backdrop-filter: blur(10px);
    color: var(--white-soft) !important;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    box-shadow:
        0 8px 25px var(--shadow-medium),
        0 4px 15px rgba(44, 44, 44, 0.2);
    border: 2px solid var(--accent-gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(44, 44, 44, 0.3);
}

/* אפקט זוהר לכפתור איזור אישי */
.account-btn::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 ease;
}

.account-btn:hover::before {
    left: 100%;
}

.account-btn:hover {
    background: var(--white-soft) !important;
    color: var(--primary-gold) !important;
    transform: translateY(-3px) scale(1.08);
    box-shadow:
        0 12px 35px var(--shadow-warm),
        0 6px 20px rgba(44, 44, 44, 0.25);
    border-color: var(--primary-gold);
}

/* עיצוב מיוחד לכפתור כשהוא פעיל */
.account-btn:active {
    transform: translateY(-1px) scale(1.05);
    transition: all 0.1s ease;
}

/* Account suggestion under subscription form */
.account-suggestion {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.account-suggestion p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.account-suggestion a {
    color: var(--white-soft);
    text-decoration: underline;
    font-weight: 600;
}

.account-suggestion a:hover {
    color: var(--accent-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 60px 20px 40px;
        min-height: 40vh;
    }

    .main-title {
        font-size: 2.8rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .logo-placeholder {
        font-size: 2rem;
        padding: 20px 30px;
    }

    main {
        padding: 60px 20px;
    }

    .description,
    .subscribe-section,
    .contact-section {
        padding: 40px 30px;
        margin-bottom: 60px;
    }

    .subscribe-form {
        flex-direction: column;
        gap: 15px;
    }

    .email-input {
        min-width: 100%;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .navigation-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .account-links {
        top: 10px;
        right: 10px;
    }

    .account-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .logo-placeholder {
        font-size: 1.7rem;
        padding: 15px 25px;
    }

    .subscribe-section h2 {
        font-size: 2.2rem;
    }

    .contact-section h2 {
        font-size: 2rem;
    }

    .modal-content {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .modal-content h2 {
        font-size: 1.8rem;
    }

    .modal-content p {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        left: 20px;
    }

    .description p,
    .contact-item {
        font-size: 1.1rem;
    }

    header {
        min-height: 35vh;
    }

    .navigation-links {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .language-selector {
        top: 5px;
        left: 5px;
        padding: 6px;
    }

    .language-selector select {
        font-size: 12px;
    }
}

/* High-end device optimizations */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        margin: 0 auto;
        border-radius: 0;
    }

    .main-title {
        font-size: 4.5rem;
    }

    .logo-placeholder {
        font-size: 3rem;
    }

    main {
        padding: 120px 60px;
    }
}

/* Print styles */
@media print {

    .whatsapp-float,
    .bg-particles,
    .modal,
    .language-selector,
    .account-links {
        display: none !important;
    }

    header::before {
        display: none;
    }

    * {
        box-shadow: none !important;
        animation: none !important;
        transition: none !important;
    }

    body {
        background: white !important;
        color: var(--text-primary) !important;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .particle {
        display: none;
    }
}

/* RTL/LTR Support for Multi-language */
[dir="ltr"] .email-input {
    text-align: left;
}

[dir="ltr"] .modal-content {
    text-align: left;
}

[dir="ltr"] .language-selector {
    left: auto;
    right: 20px;
}

[dir="ltr"] .whatsapp-float {
    left: auto;
    right: 35px;
}
/* תיקונים קריטיים לעיצוב יוקרתי מושלם */

/* 1. תיקון כפתור האיזור האישי */
.account-links {
    position: fixed;
    top: 20px;
    right: 20px;
    /* הזזתי קצת יותר פנימה */
    z-index: 1000;
}

.account-btn {
    background: var(--gradient-gold) !important;
    backdrop-filter: blur(15px);
    color: var(--white-soft) !important;
    padding: 14px 24px;
    /* הגדלתי padding */
    border-radius: 30px;
    /* עיגול יותר אלגנטי */
    text-decoration: none;
    font-size: 16px;
    /* הגדלתי טקסט */
    font-weight: 700;
    box-shadow:
        0 10px 30px rgba(201, 169, 97, 0.4),
        0 5px 15px rgba(44, 44, 44, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid var(--accent-gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(44, 44, 44, 0.3);
    font-family: 'Heebo', sans-serif;
    white-space: nowrap;
}

/* אפקט זוהר לכפתור איזור אישי */
.account-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.6s ease;
}

.account-btn:hover::before {
    left: 100%;
}

.account-btn:hover {
    background: var(--white-soft) !important;
    color: var(--primary-gold) !important;
    transform: translateY(-4px) scale(1.08);
    box-shadow:
        0 15px 40px rgba(201, 169, 97, 0.5),
        0 8px 25px rgba(44, 44, 44, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: var(--primary-gold);
}

.account-btn:active {
    transform: translateY(-2px) scale(1.05);
    transition: all 0.1s ease;
}

/* 2. תיקון רקעים יוקרתיים לכל האתר */
html {
    background: var(--gradient-cream) !important;
    min-height: 100%;
}

body {
    background: var(--gradient-cream) !important;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* וידוא שהקונטיינר הראשי תמיד יוקרתי */
.container {
    background: rgba(254, 254, 254, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow:
        0 25px 70px rgba(201, 169, 97, 0.15),
        0 10px 30px rgba(44, 44, 44, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    border: 1px solid rgba(230, 204, 122, 0.2);
    min-height: 100vh;
}

/* 3. תיקון רקע המודל */
.modal {
    background: rgba(44, 44, 44, 0.85) !important;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--white-soft) !important;
    border: 2px solid var(--accent-gold);
    box-shadow:
        0 40px 100px rgba(201, 169, 97, 0.3),
        0 20px 50px rgba(44, 44, 44, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* 4. תיקון רקע הטפסים */
.subscribe-section {
    background: var(--gradient-gold) !important;
    position: relative;
    overflow: hidden;
}

.description,
.contact-section {
    background: var(--white-soft) !important;
    box-shadow:
        0 25px 70px rgba(201, 169, 97, 0.15),
        0 10px 30px rgba(44, 44, 44, 0.1) !important;
}

/* 5. תיקון רקע ה-header */
header {
    background: var(--gradient-gold) !important;
    position: relative;
    overflow: hidden;
}

/* 6. תיקון רקע ה-footer */
footer {
    background: var(--gradient-elegant) !important;
    border-top: 2px solid var(--accent-gold);
}

/* 7. וידוא שאין שום רקע שחור */
* {
    /* מונע רקע שחור בכל מקום */
}

*:not(.whatsapp-float):not(.whatsapp-float *) {
    background-color: inherit;
}

/* 8. תיקון ספציפי לכפתורי ניווט */
.nav-btn {
    background: var(--gradient-gold) !important;
    color: var(--white-soft) !important;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

.nav-btn:hover {
    background: var(--white-soft) !important;
    color: var(--primary-gold) !important;
}

/* 9. תיקון כפתור ה-WhatsApp */
.whatsapp-float {
    background: linear-gradient(135deg, #25D366, #128C7E, #075E54) !important;
    box-shadow:
        0 12px 35px rgba(37, 211, 102, 0.4),
        0 6px 20px rgba(44, 44, 44, 0.2);
}

/* 10. רספונסיבי לכפתור איזור אישי */
@media (max-width: 768px) {
    .account-links {
        top: 15px;
        right: 15px;
    }

    .account-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .account-links {
        top: 10px;
        right: 10px;
    }

    .account-btn {
        padding: 10px 16px;
        font-size: 13px;
        gap: 6px;
    }
}

/* 11. אנימציה עדינה לכניסה */
.account-btn {
    animation: accountBtnEntrance 1s ease-out;
}

@keyframes accountBtnEntrance {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 12. תיקון סופי - וידוא רקע יוקרתי בכל מקום */
body,
html,
.container,
main,
section,
div:not(.whatsapp-float) {
    background-color: var(--background-cream, #FBF8F2);
}

.content-section {
    background: var(--white-soft, #FEFEFE) !important;
}

/* 13. הבטחת ניגודיות טובה לטקסט */
.account-btn {
    text-shadow: 1px 1px 2px rgba(44, 44, 44, 0.3);
}

.account-btn:hover {
    text-shadow: 1px 1px 2px rgba(201, 169, 97, 0.3);
}