section,
section::before,
section::after,
.hero,
.hero::before,
.hero::after,
.orders-section,
.orders-section::before,
.orders-section::after,
.contact-section,
.contact-section::before,
.contact-section::after,
.contact-section-crystal,
.contact-section-crystal::before,
.contact-section-crystal::after {
    background: transparent !important;
    background-image: none !important;
}

#name-meaning,
#name-analysis,
#name-components {
    padding: 4rem 0;
}

#name-meaning {
    background: rgba(245, 248, 255, 0.9);
}

#name-analysis {
    background: rgba(231, 240, 255, 0.9);
}

#name-components {
    background: rgba(240, 246, 255, 0.9);
}

.promo-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 95, 140, 0.92);
    color: #fff;
    border-radius: 999px;
    padding: 0.75rem 1.2rem;
    box-shadow: 0 15px 35px rgba(12, 28, 45, 0.35);
    z-index: 1500;
    display: none;
    gap: 1rem;
    align-items: center;
    backdrop-filter: blur(12px);
}

.promo-banner.show {
    display: flex;
    animation: promo-slide-up 0.35s ease forwards;
}

.promo-banner-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.promo-banner-text {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.promo-banner-text strong {
    font-weight: 700;
}

.promo-banner-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.promo-banner-btn {
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: none;
}

.promo-banner-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.promo-banner-close:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.promo-banner-close span {
    font-size: 1.1rem;
    line-height: 1;
}

@keyframes promo-slide-up {
    from {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .promo-banner {
        width: calc(100% - 2rem);
        border-radius: 18px;
        padding: 0.85rem 1rem;
    }

    .promo-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .promo-banner-actions {
        width: 100%;
        justify-content: space-between;
    }

    .promo-banner-btn {
        flex: 1;
        text-align: center;
    }
}
:root {
    --primary-color: #b5d6e8;
    --secondary-color: #3c8dbc;
    --accent-color: #1e5f8c;
    --light-color: #f0f7fc;
    --text-color: #2a4054;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    font-size: 16px;
    height: 100%;
}

body {
    background-color: #d9eaf8;
    color: var(--text-color);
    line-height: 1.3;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-weight: bold;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.0rem;
    width: 100%;
}

/* תפריט ניווט */
header {
    background-color: #eef9ff;
    box-shadow: 0 2px 15px rgba(28, 122, 168, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}
.hero-content {
    /* עיצוב כללי */
    text-align: center;
    direction: rtl;
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-content h1 {
    /* עיצוב טקסט */
    color: #ffffff;
    font-family: 'David', 'Rubik', 'Open Sans Hebrew', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    
    /* צללית */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6),
                 2px 2px 5px rgba(0, 0, 0, 0.4);

    
    /* אפקט מעבר חלק */
    transition: all 0.2s ease;
    
    /* הוספת cursor: pointer כדי שיהיה ברור שאפשר להצביע על הטקסט */
    cursor: pointer;
}

/* האנימציה פועלת רק כשעוברים עם העכבר על הטקסט עצמו */
.hero-content h1:hover {
    transform: scale(1.03);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8),
                 3px 3px 7px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    position: relative;
}

/* עיצוב חדש ללוגו בתפריט הניווט */
.logo {
    font-size: 1.7rem;
    font-weight: bold;
    background: linear-gradient(to right, #2d5aa0 0%, #1e4a7e 50%, #3d6bb8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    padding: 0.5rem 0.8rem;
    position: relative;
    letter-spacing: 0.5px;
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
}

.logo:before {
    display: none;
}

.logo:hover:before {
    display: none;
}

.menu {
    list-style-type: none;
    display: flex;
    margin-right: 4cm;
}

.menu li {
    margin-right: 1.5rem;
}

/* הוספת קו תחתון עם אפקט */
.menu a {
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 500;
    padding: 0.5rem 0;
    display: block;
    position: relative; /* חשוב בשביל הקו התחתון */
}

/* קו תחתון בעת hover */
.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.menu a:hover {
    color: var(--secondary-color);
}

/* קו תחתון קבוע לדף הפעיל */
.menu a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--accent-color);
    position: relative;
    z-index: 101;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

/* עיצוב לאזור הגיבור */
.hero {
    background: linear-gradient();
    padding: 0.15rem 0 0.04rem 0;
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    text-align: center;
}

.hero .container {
    padding: 0.2rem 1rem 0.04rem 1rem;
    margin: 0;
}

/* עיצוב חדש למיכל התמונה שמתחת לכותרת */
.hero-image-container {
    display: flex;
    justify-content: center;
    margin: 15px 0 20px;
}

/* סגנון לתמונה מתחת לכותרת - גדולה יותר */
.hero-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid #3c8dbc;
    object-fit: cover;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: 2.88rem;
    margin-bottom: 0.08rem;
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
    line-height: 1.1;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 0.01rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-weight: bold;
}

/* עיצוב לתיאור התפקיד */
.profession-title {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin: 0.2rem 0 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    line-height: 1.3;
}

.profession-title::before,
.profession-title::after {
    content: "✦";
    display: inline-block;
    color: var(--accent-color);
    opacity: 0.7;
    margin: 0 10px;
    font-size: 0.9rem;
}

/* עיצוב משופר לטקסט המנוקד באזור הגיבור */
.intro-text-container {
    max-width: 60%;
    margin: 0 auto 2rem;
    padding: 1rem;
    background-color: rgba(240, 247, 252, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(247, 226, 226, 0.08);
    position: relative;
    overflow: hidden;
}

.intro-text-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
}

.intro-heading {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.5;
}

.intro-separator {
    width: 60%;
    height: 1px;
    margin: 1rem auto;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

.intro-content {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    text-align: center;
    font-weight: bold;
}

.intro-footer {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* גלריית תמונות פשוטה */
.image-gallery-section {
    margin: 3rem auto 2rem;
    max-width: 100%;
}

.gallery-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

    .gallery-heading {
        font-size: 1.8rem;
        color: var(--accent-color);
        font-weight: 700;
        margin: 0;
        text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
    }

.simple-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    column-gap: 1rem;
    row-gap: 1rem;
    margin-top: 1.5rem;
    justify-items: center;
}

.gallery-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.375rem;
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(184, 199, 218, 0.95), rgba(127, 158, 191, 0.88));
    box-shadow: 0 8px 18px rgba(21, 58, 92, 0.12);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(19, 70, 110, 0.45);
    opacity: 0.85;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(21, 58, 92, 0.2);
}

.gallery-image-simple {
    width: 250px;
    height: 250px;
    object-fit: cover;
    object-position: center;
    transform: none;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.gallery-image-contain {
    object-fit: contain;
    background-color: rgba(235, 242, 249, 0.85);
    border-radius: 18px;
}

.orders-hero {
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.orders-hero-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.orders-hero-content {
    position: relative;
    z-index: 1;
}

.orders-hero-kicker {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.orders-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.orders-hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.orders-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn.secondary-btn {
    background: linear-gradient(to right, rgba(195, 222, 237, 0.95), rgba(161, 205, 230, 0.95));
    color: var(--accent-color);
    border: none;
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px rgba(30, 95, 140, 0.25), 0 8px 18px rgba(30, 95, 140, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 1px rgba(30, 95, 140, 0.25), 0 12px 24px rgba(30, 95, 140, 0.22);
}

.orders-hero-highlights {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--accent-color);
    font-weight: 6232100;
}

.orders-hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: 159px;
    background: rgba(60, 141, 188, 0.12);
}

.orders-hero-highlight-icon {
    font-size: 1.2rem;
}

.orders-hero-media {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.orders-hero-image {
    position: relative;
    border-radius: 26px;
    overflow: visible;
}

.orders-hero-image-frame {
    position: relative;
    padding: 1.2rem;
    border-radius: 30px;
    background: linear-gradient(160deg, rgba(184, 199, 218, 0.95), rgba(127, 158, 191, 0.88));
    box-shadow: 0 26px 45px rgba(21, 58, 92, 0.2);
    overflow: hidden;
}

.orders-hero-image-frame::before {
    content: "";
    position: absolute;
    inset: 0.35rem;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.32),
                inset 0 0 0 1px rgba(19, 70, 110, 0.35);
    pointer-events: none;
}

.orders-hero-image img {
    display: block;
    width: 450px;
    height: 450px;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
}

.orders-section {
    padding: 4.5rem 0;
}

.orders-section#orders-gallery {
    padding-bottom: 1.5rem;
}

.orders-section.bg-light {
    background: transparent !important;
}

.orders-section-title {
    text-align: center;
    max-width: 420px;
    margin: 0 auto 3rem;
}

.orders-section-title h2 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.orders-section-title p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

.orders-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.orders-highlight-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(30, 95, 140, 0.08);
    text-align: center;
}

.orders-highlight-icon {
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: rgba(60, 141, 188, 0.1);
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.orders-highlight-card h3 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.orders-highlight-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}

.orders-process-wrapper {
    max-width: 980px;
}

.orders-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.orders-step {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 15px 35px rgba(30, 95, 140, 0.08);
}

.orders-step-number {
    position: absolute;
    top: -25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 12px 20px rgba(30, 95, 140, 0.3);
}

.orders-step h3 {
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

.orders-step p {
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.85;
}

.orders-gallery-slider {
    position: relative;
    overflow: hidden;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 3.5rem;
}

.orders-gallery-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s ease;
}

.orders-gallery-item {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orders-gallery-item img {
    display: block;
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.4s ease;
}

.orders-gallery-item:hover img {
    transform: scale(1.04);
}

.orders-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(30, 95, 140, 0.85);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 10px 25px rgba(12, 28, 45, 0.25);
}

.orders-gallery-nav:hover {
    background: rgba(30, 95, 140, 1);
    transform: translateY(-50%) scale(1.05);
}

.orders-gallery-nav.prev {
    left: 0.75rem;
}

.orders-gallery-nav.next {
    right: 0.75rem;
}

.orders-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.order-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(30, 95, 140, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.order-card.featured {
    border: 2px solid rgba(30, 95, 140, 0.35);
    transform: translateY(-10px);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
}

.order-card-header h3 {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.order-card-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.order-includes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.order-includes li {
    padding-right: 1.8rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.order-includes li::before {
    content: "✔";
    color: var(--secondary-color);
    position: absolute;
    right: 0;
    top: 0;
}

.order-card-btn {
    text-align: center;
}

.orders-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.orders-testimonial {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 12px 28px rgba(30, 95, 140, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.orders-testimonial p {
    font-style: italic;
    line-height: 1.7;
}

.orders-testimonial span {
    font-weight: 600;
    color: var(--accent-color);
}

.orders-cta-section {
    padding: 4.5rem 0 5rem;
}

.orders-cta-wrapper {
    max-width: 820px;
    text-align: center;
}

.orders-cta-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.orders-cta-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.orders-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 520px) {
    .popup-modal {
        padding: 2rem 1.75rem;
    }

    .popup-modal h3 {
        font-size: 1.4rem;
    }
}

.gallery-item {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    outline: none;
}

.gallery-item:focus {
    outline: none;
}

.gallery-item:active {
    transform: none;
}

.gallery-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    max-width: 100%;
}

.gallery-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    max-width: 100%;
    position: relative;
    width: 100%;
    height: 700px;
}

.gallery-track {
    display: flex;
    flex-direction: row;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    will-change: transform;
}

.gallery-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
    display: block;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background-color: #f0f0f0;
    min-height: 100%;
}

/* וידוא שהתמונות נטענות */
.gallery-slide:not(:first-child) .gallery-image {
    visibility: visible;
    opacity: 1;
}

.gallery-btn {
    background: var(--secondary-color);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.gallery-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-btn:active {
    transform: scale(0.95);
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(60, 141, 188, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

/* התאמות למובייל - גלריה */
@media screen and (max-width: 768px) {
    .image-gallery-section {
        max-width: 95%;
        margin: 1.5rem auto;
    }
    
    .gallery-title {
        margin-bottom: 0.8rem;
    }
    
    .gallery-heading {
        font-size: 1.2rem;
    }
    
    .simple-gallery {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .gallery-item {
        height: auto;
        padding: 0.25rem;
    }
    
    .gallery-image-simple {
        width: 100% !important;
        max-width: 240px !important;
        height: 240px !important;
    }
}

@media (max-width: 992px) {
    .orders-hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .orders-hero-actions,
    .orders-hero-highlights {
        justify-content: center;
    }

    .orders-hero-media {
        max-width: 420px;
        margin: 0 auto;
    }

    .orders-hero-image {
        margin-top: 2.5rem;
    }

    .orders-hero-image-frame {
        padding: 0.85rem;
    }

    .orders-section {
        padding: 3.5rem 0;
    }
}

@media (max-width: 768px) {
    .orders-hero {
        padding: 2rem 0 1.5rem;
    }

    .orders-hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .orders-hero-kicker {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .orders-hero-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }

    .orders-hero-actions {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }

    .orders-hero-actions .btn {
        width: 100%;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .orders-hero-highlights {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch;
    }

    .orders-hero-highlight {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
        justify-content: center;
    }

    .orders-hero-highlight-icon {
        font-size: 1rem;
    }

    .orders-hero-media {
        max-width: 100%;
        margin: 1.5rem auto 0;
    }

    .orders-hero-image {
        margin-top: 1.5rem;
    }

    .orders-hero-image-frame {
        padding: 0.6rem;
    }

    .orders-hero-image img {
        width: 100% !important;
        max-width: 280px !important;
        height: auto !important;
        aspect-ratio: 1;
    }

    .orders-section-title {
        max-width: 100%;
        margin: 0 auto 1.5rem;
        padding: 0 0.5rem;
    }

    .orders-section-title h2 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .orders-section-title p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .orders-highlight-grid,
    .orders-process-steps,
    .orders-gallery-grid,
    .orders-packages,
    .orders-testimonials {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .orders-step {
        padding: 1.2rem;
    }

    .orders-step-number {
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1rem;
        top: -20px;
    }

    .orders-step h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .orders-step p {
        font-size: 0.85rem;
    }

    .orders-section {
        padding: 2rem 0;
    }

    .order-card {
        padding: 1.5rem 1.2rem;
    }

    .order-card-header h3 {
        font-size: 1.1rem;
    }

    .order-card-price {
        font-size: 1.3rem;
    }

    .order-includes li {
        font-size: 0.85rem;
        padding-right: 1.5rem;
    }

    .orders-testimonial {
        padding: 1.2rem;
    }

    .orders-testimonial p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .orders-cta-content h2 {
        font-size: 1.5rem;
    }

    .orders-cta-actions {
        flex-direction: column;
    }

    .pricelist-image {
        max-width: 100% !important;
        width: 100% !important;
    }
}

@media (max-width: 520px) {
    .orders-hero {
        padding: 1.5rem 0 1rem;
    }

    .orders-hero h1 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .orders-hero-text {
        font-size: 0.85rem;
    }

    .orders-hero-actions .btn,
    .orders-cta-actions .btn {
        width: 100%;
        text-align: center;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .orders-hero-image img {
        max-width: 240px !important;
    }

    .orders-section-title h2 {
        font-size: 1.2rem;
    }

    .order-card {
        padding: 1.2rem 1rem;
    }
}

/* תיקון צבע כפתור "צרי קשר" */
.contact-btn {
    background: linear-gradient(to right, #1e5f8c, #3c8dbc);
    color: white;
    font-weight: bold;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 95, 140, 0.3);
}

.btn {
    display: inline-block;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 95, 140, 0.3);
}

/* כותרות סקשנים */
.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    padding-bottom: 0.1rem;
}

.section-title h2::after {
    display: none;
}

/* רקע לסקשנים */
.bg-light {
    background-color: #f0f7fc;
}

/* צמצום רווחים ספציפי לעמוד קריסטלים */
#crystal-therapy {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

#crystal-therapy .section-title {
    margin-bottom: 0.25rem !important;
}

#crystal-therapy .content-box {
    margin-bottom: 0.5rem !important;
}

#crystal-types {
    padding-top: 0.25rem !important;
    padding-bottom: 0.5rem !important;
}

#crystal-types .section-title {
    margin-bottom: 0.25rem !important;
    margin-top: 0 !important;
}

#crystal-types .crystal-grid {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

#pricelist {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

#pricelist .section-title {
    margin-bottom: 0.25rem !important;
    margin-top: 0 !important;
}

#pricelist .pricelist-container {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

#crystal-benefits {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

#crystal-benefits .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1200px;
}

#crystal-benefits .section-title {
    margin-bottom: 0.25rem !important;
    margin-top: 0 !important;
    text-align: center !important;
}

#crystal-benefits .section-title h2 {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}

#crystal-benefits .benefits-grid {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    justify-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

#crystal-benefits .benefit-item {
    text-align: center;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#crystal-benefits .benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

#crystal-benefits .benefit-item h3 {
    text-align: center;
    margin-bottom: 0.5rem;
}

#crystal-benefits .benefit-item p {
    text-align: center;
}

#contact-crystal {
    display: flex;
    justify-content: center;
    align-items: center;
}

#contact-crystal .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

#contact-crystal .contact-crystal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

#contact-crystal .contact-crystal-content h2 {
    text-align: center;
    margin-bottom: 1rem;
}

#contact-crystal .contact-crystal-content p {
    text-align: center;
    margin-bottom: 1.5rem;
}

#contact-crystal .crystal-contact-btn {
    display: inline-block;
    margin: 0 auto;
}

/* צמצום רווחים בעמוד index.html */
#services {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

#services .section-title {
    margin-bottom: 0.25rem !important;
}

#names {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

#names .section-title {
    margin-bottom: 0.25rem !important;
}

#testimonials {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

#testimonials .section-title {
    margin-bottom: 0.25rem !important;
}

/* צמצום רווחים בעמוד names.html */
#name-meaning {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

#name-meaning .section-title {
    margin-bottom: 0.25rem !important;
}

#name-meaning .content-box {
    margin-bottom: 0.5rem !important;
}

#name-analysis {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

#name-analysis .section-title {
    margin-bottom: 0.25rem !important;
}

#name-components {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

#name-components .section-title {
    margin-bottom: 0.25rem !important;
}

/* צמצום רווחים בעמוד about.html */
#our-story {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

#our-story .section-title {
    margin-bottom: 0.25rem !important;
}

#our-values {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

#our-values .section-title {
    margin-bottom: 0.25rem !important;
}

/* צמצום רווחים בעמוד contact.html */
#contact-info {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

#contact-info .section-title {
    margin-bottom: 0.25rem !important;
}

#contact-form-section {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

#contact-form-section .section-title {
    margin-bottom: 0.25rem !important;
    text-align: center !important;
}

#contact-form-section .section-title h2 {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}

#contact-form-section .form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

#contact-form-section .form-intro {
    text-align: center;
    margin-bottom: 1.5rem;
}

#contact-form-section .form-intro p {
    text-align: center;
}

#contact-form-section .whatsapp-contact {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* כרטיסים */
section {
    padding: 1.5rem 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.services-tagline {
    max-width: 780px;
    margin: 0.75rem auto 2.5rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(21, 58, 92, 0.87);
    font-weight: 500;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.service-card {
    position: relative;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(224, 236, 247, 0.96));
    border-radius: 22px;
    padding: 2.25rem 2rem 2.5rem;
    box-shadow: 0 25px 45px rgba(12, 44, 78, 0.16);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(30, 95, 140, 0.12);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.35), transparent 52%);
    opacity: 0.7;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 58px rgba(12, 44, 78, 0.2);
}

.service-card-header {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}

.service-card h3 {
    font-size: 1.6rem;
    margin: 0;
    color: var(--accent-color);
}

.service-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    color: rgba(21, 58, 92, 0.85);
    font-weight: 500;
}

.service-features {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(12, 36, 62, 0.9);
    font-weight: 500;
}

.service-features li span {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.service-cta {
    position: relative;
    z-index: 1;
    align-self: center;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #d4af37, #b99124);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(180, 130, 20, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(20, 60, 96, 0.3);
}

@media (max-width: 768px) {
    .services-tagline {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .services-showcase {
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem 1.2rem 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-intro {
        font-size: 0.9rem;
    }
    
    .service-features li {
        font-size: 0.85rem;
    }
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-img {
    height:300px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.card-content {
    padding: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.card p {
    line-height: 1.5;
    font-weight: bold;
}

/* סילבוס */
.syllabus {
    background: white;
    padding: 1.4rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.syllabus-week {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.syllabus-week:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.week-title {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* קריסטלים - Carousel */
.crystal-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
    padding: 2rem 0;
    background-color: var(--light-color);
}

.crystal-carousel-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.crystal-carousel-track {
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 5 פריטים - כולם באותו גודל בדיוק - כללי - ללא יוצאים מהכלל */
.crystal-carousel-track .crystal-item,
.crystal-carousel-track .crystal-item.side-item,
.crystal-carousel-track .crystal-item.mid-item,
.crystal-carousel-track .crystal-item.center-item {
    flex: 0 0 20% !important;
    min-width: 20% !important;
    max-width: 20% !important;
    width: 20% !important;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1) !important;
    opacity: 1 !important;
    box-sizing: border-box !important;
    height: auto !important;
}

/* אבטחה נוספת - כל הפריטים זהים */
.crystal-carousel-track .crystal-item * {
    box-sizing: border-box;
}

.carousel-btn {
    background: var(--secondary-color);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* קריסטלים - Grid קומפקטי עם hover */
.crystal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    column-gap: 1rem;
    row-gap: 1rem;
    margin: 2rem 0;
    padding: 2rem 0;
    justify-items: center;
}

.crystal-grid .crystal-item {
    background: transparent;
    border-radius: 12px;
    overflow: visible;
    box-shadow: none;
    border: none;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: none !important;
    align-items: center;
}


.crystal-grid .crystal-img {
    width: fit-content;
    height: fit-content;
    max-width: 100%;
    flex-shrink: 0;
    overflow: visible;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0.375rem;
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(184, 199, 218, 0.95), rgba(127, 158, 191, 0.88));
    box-shadow: 0 8px 18px rgba(21, 58, 92, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.crystal-grid .crystal-img::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(19, 70, 110, 0.45);
    opacity: 0.85;
    pointer-events: none;
    z-index: 1;
}

.crystal-grid .crystal-item:hover .crystal-img {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(21, 58, 92, 0.2);
}

.crystal-grid .crystal-img img {
    width: 250px !important;
    height: 250px !important;
    min-width: 250px !important;
    min-height: 250px !important;
    max-width: 250px !important;
    max-height: 250px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 18px;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    position: relative;
    z-index: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

@media (max-width: 480px) {
    .crystal-grid .crystal-img {
        width: 140px;
        height: 140px;
    }
    
    .crystal-grid .crystal-img img {
        width: 140px;
        height: 140px;
    }
    
    .gallery-image-simple {
        max-width: 240px !important;
        height: 240px !important;
    }
    
    .hero h1 {
        font-size: 1.4rem;
    }
    
    .section-title h2 {
        font-size: 1.2rem;
    }
    
    html {
        font-size: 13px;
    }
}


.crystal-grid .crystal-info {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 280px;
}

.crystal-grid .crystal-name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: bold;
}

.crystal-grid .crystal-separator-mini {
    width: 30px;
    height: 2px;
    margin: 0 auto 0.5rem auto;
}

.crystal-grid .crystal-properties {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.9;
}


.crystal-grid .crystal-info p:last-child {
    font-size: 0.75rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-top: auto;
    padding-top: 0.5rem;
}

/* מחירון */
.pricelist-section {
    padding: 3rem 0;
    background-color: var(--light-color);
}

.pricelist-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.pricelist-image {
    max-width: 50%;
    width: 50%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: block;
}

/* עיצוב נקי לקריסטלים ב-carousel - כולם אותו דבר */
.crystal-carousel-track .crystal-item {
    background: var(--light-color) !important;
    border: 1px solid rgba(60, 141, 188, 0.15) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    border-radius: 12px;
    overflow: hidden;
}

.crystal-carousel-track .crystal-item.side-item,
.crystal-carousel-track .crystal-item.mid-item,
.crystal-carousel-track .crystal-item.center-item {
    background: var(--light-color) !important;
    border: 1px solid rgba(60, 141, 188, 0.15) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}


.crystal-img {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.crystal-carousel-track .crystal-item .crystal-img {
    height: 200px !important;
}

/* כל התמונות באותו גודל */
.crystal-carousel-track .crystal-item .crystal-img,
.crystal-carousel-track .crystal-item.side-item .crystal-img,
.crystal-carousel-track .crystal-item.mid-item .crystal-img,
.crystal-carousel-track .crystal-item.center-item .crystal-img {
    height: 200px !important;
    width: 100% !important;
}

.crystal-info {
    padding: 1.5rem;
}

.crystal-carousel-track .crystal-item .crystal-info {
    padding: 1rem !important;
}

/* כל ה-info sections באותו padding */
.crystal-carousel-track .crystal-item .crystal-info,
.crystal-carousel-track .crystal-item.side-item .crystal-info,
.crystal-carousel-track .crystal-item.mid-item .crystal-info,
.crystal-carousel-track .crystal-item.center-item .crystal-info {
    padding: 1rem !important;
}

/* כל הטקסטים באותו גודל - ללא יוצאים מהכלל */
.crystal-carousel-track .crystal-item .crystal-name,
.crystal-carousel-track .crystal-item.side-item .crystal-name,
.crystal-carousel-track .crystal-item.mid-item .crystal-name,
.crystal-carousel-track .crystal-item.center-item .crystal-name {
    font-size: 1rem !important;
}

.crystal-carousel-track .crystal-item .crystal-properties,
.crystal-carousel-track .crystal-item.side-item .crystal-properties,
.crystal-carousel-track .crystal-item.mid-item .crystal-properties,
.crystal-carousel-track .crystal-item.center-item .crystal-properties {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
}

.crystal-carousel-track .crystal-item .crystal-info p:last-child,
.crystal-carousel-track .crystal-item.side-item .crystal-info p:last-child,
.crystal-carousel-track .crystal-item.mid-item .crystal-info p:last-child,
.crystal-carousel-track .crystal-item.center-item .crystal-info p:last-child {
    font-size: 0.75rem !important;
}

.crystal-info-img {
    width: 100%;
    max-width: 150px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0.5rem auto 1rem;
    display: block;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.crystal-carousel-track .crystal-item.center-item .crystal-info-img {
    max-width: 150px !important;
    height: 120px !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
}

.crystal-name {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    transition: all 0.6s ease;
    font-weight: 700;
}

.crystal-carousel-track .crystal-item.center-item .crystal-name {
    font-size: 1rem !important;
    color: var(--accent-color);
}

.crystal-properties {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* טופס פיענוח שמות */
.name-form {
    background: white;
    padding: 1.4rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.name-analysis-btn {
    display: block;
    margin: 1rem auto 0;
    text-align: center;
}

.name-result {
    background: var(--secondary-color);
    padding: 1.4rem;
    border-radius: 10px;
    color: white;
}

.name-result p {
    line-height: 1.5;
}

/* אודות */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.about-content p {
    line-height: 1.5;
    margin-bottom: 1rem;
}

.about-content h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.about-img {
    background-color: var(--secondary-color);
    height: 300px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* טסטימוניאלס */
.testimonials {
    background-color: var(--primary-color);
}

.testimonial {
    background: white;
    padding: 1.4rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.testimonial-author {
    font-weight: bold;
    text-align: left;
}

/* טופס צור קשר - עיצוב יוקרתי חדש */
#contact .container {
    max-width: 800px;
    margin: 0 auto;
}

#contact .section-title {
    margin-bottom: 40px;
    text-align: center;
}

#contact .section-title h2 {
    font-size: 32px;
    font-weight: 600;
    color: #38302e;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.contact-form {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(160, 13, 228, 0.08);
    padding: 35px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #555;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: #7eb1c5;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(197, 164, 126, 0.1);
    outline: none;
}

.contact-form .form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-form .btn {
    background: linear-gradient(45deg, #3295ce, #3295ce);
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(197, 164, 126, 0.15);
}

.contact-form .btn:hover {
    background: linear-gradient(45deg, #3295ce, #3295ce);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(197, 164, 126, 0.2);
}

/* הודעות שגיאה בטופס */
.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
}

/* פוטר */
footer {
    background: linear-gradient(1deg, #68acd3, #60a3fa);
    color: rgb(0, 0, 0);
    padding: 0.2rem 0 0.1rem;
    margin-top: auto;
    font-size: 0.825em;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-column h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.2rem;
    font-weight: bold;
}

.footer-column a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    opacity: 0.8;
}

.footer-column a:hover {
    opacity: 1;
}

.copyright {
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: bold;
}

/* תוספות לדפים החדשים */
.content-box {
    background: white;
    padding: 1.4rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: bold;
}

.letter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.letter-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.letter {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-img {
    height: 180px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.member-info {
    padding: 1.5rem;
}

.member-title {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-style: italic;
}

/* עיצוב הודעה קופצת - זהב ממלכתי */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.popup-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: linear-gradient(135deg, #f5e6d3 0%, #fff8e7 50%, #f5e6d3 100%);
    color: #3d2817;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3), 
                0 0 0 2px #d4af37,
                0 0 20px rgba(212, 175, 55, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    text-align: center;
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 520px;
    width: 90%;
    max-height: 85vh;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    font-family: 'Georgia', 'Times New Roman', serif;
    border: 3px solid #d4af37;
}

.popup-message.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.popup-message::-webkit-scrollbar {
    width: 8px;
}

.popup-message::-webkit-scrollbar-track {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
}

.popup-message::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4af37 0%, #b8941f 100%);
    border-radius: 4px;
    border: 1px solid #8b6914;
}

.popup-message::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #e5c547 0%, #c9a529 100%);
}

.popup-message img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.2rem;
    border: 3px solid #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4), 
                0 0 10px rgba(212, 175, 55, 0.2),
                inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.popup-image-wrapper {
    width: 100%;
    max-width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    margin: 1.5rem auto 0.375rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: none;
    background: transparent;
}

.popup-large-image {
    width: 100% !important;
    height: 100% !important;
    border-radius: 8px !important;
    border: none !important;
    object-fit: cover;
    object-position: center center;
    display: block;
    position: absolute;
    top: 50%;
    left: calc(50% + 1cm);
    transform: translate(-50%, -50%);
}

.popup-message h2 {
    font-size: 1.9rem;
    margin-bottom: 0.8rem;
    margin-top: 0;
    font-weight: 700;
    color: #8b6914;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3),
                 0 0 10px rgba(212, 175, 55, 0.2),
                 1px 1px 2px rgba(0, 0, 0, 0.1);
    font-family: 'Georgia', 'Times New Roman', serif;
}

.popup-message h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    line-height: 1.5;
    font-weight: 700;
    color: #5d3f1f;
    text-shadow: 0 1px 3px rgba(212, 175, 55, 0.2);
}

.popup-message p {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    margin-top: 0;
    line-height: 1.6;
    color: #4a3317;
    font-weight: 700;
}

.popup-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #d4af37, #b99124);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 0.75rem;
    box-shadow: 0 12px 24px rgba(180, 130, 20, 0.25);
}

.popup-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.85rem 2.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.popup-close:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(20, 60, 96, 0.3);
}

.popup-close:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(180, 130, 20, 0.25);
}

/* התאמת פופאפ למסכים קטנים (טלפון) */
@media screen and (max-width: 768px) {
    .popup-message {
        max-width: 46% !important;
        width: 46% !important;
        padding: 0.75rem 0.6rem;
        max-height: 45vh;
        border-radius: 8px;
        border-width: 1px;
    }
    
    .popup-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        height: 175px !important;
        margin: 0.6rem 0;
    }
    
    .popup-large-image {
        width: 100% !important;
        height: 100% !important;
        left: 50% !important;
    }

    .popup-cta {
        width: 100%;
        padding: 0.425rem 1.125rem !important;
        font-size: 0.7rem !important;
        margin-top: 0.375rem !important;
        margin-bottom: 0.375rem !important;
    }
    
    .popup-message h2 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
        margin-top: 0;
    }
    
    .popup-message h3 {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
        margin-top: 0.2rem;
        line-height: 1.3;
    }
    
    .popup-message p {
        font-size: 0.65rem;
        margin-bottom: 0.3rem;
    }
    
    .popup-close {
        padding: 0.425rem 1.125rem;
        font-size: 0.7rem;
        width: 100%;
        max-width: none;
        margin-top: 0.375rem;
    }
}


/* מדיה קוורי למובייל */
@media screen and (max-width: 768px) {
    body {
        line-height: 1.2;
    }
    
    .container {
        padding: 0 0.6rem;
    }
    
    html {
        font-size: 14px;
    }
    
    /* תיקונים לתפריט */
    nav {
        position: relative;
        justify-content: center;
    }
    
    .menu-toggle {
        display: block !important;
        position: absolute;
        right: -0.5rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 101;
        margin: 0;
        background: linear-gradient(to right, #4a90e2 0%, #357abd 50%, #5ba3f0 100%);
        border: none;
        border-radius: 8px;
        padding: 0.5rem 0.8rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 15px rgba(74, 144, 226, 0.3);
        color: white;
    }
    
    .logo {
        font-size: 1.1rem;
        margin: 0 auto;
        text-align: center;
        flex: 1;
        padding: 0.4rem 0.6rem;
    }
    
    .menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        flex-direction: column;
        background-color: white;
        padding: 0.7rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: none !important;
        z-index: 100;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        margin-right: 0;
    }
    
    .menu.active {
        display: flex !important;
        opacity: 1;
        visibility: visible;
    }
    
    .menu li {
        margin: 0;
        text-align: center;
    }
    
    /* מרכוז כיתוב קריסטלים בטלפון */
    .crystal-grid .crystal-info {
        text-align: center;
        align-items: center;
    }
    
    .crystal-grid .crystal-separator-mini {
        margin: 0 auto 0.5rem auto;
    }
    
    .crystal-grid .crystal-name {
        text-align: center;
    }
    
    .crystal-grid .crystal-properties {
        text-align: center;
    }
    
    .crystal-grid .crystal-info p {
        text-align: center;
    }
    
    .menu a {
        padding: 0.7rem 0;
        border-bottom: 1px solid rgba(181, 214, 232, 0.2);
    }
    
    /* גם במובייל נשמור על האפקט של קו תחתון, אבל נשנה אותו */
    .menu a::after {
        display: block;
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
        transition: width 0.3s ease;
    }
    
    .menu a:hover::after {
        width: 50%;
    }
    
    .menu a.active::after {
        width: 50%;
    }
    
    .menu li:last-child a {
        border-bottom: none;
    }
    
    /* תיקונים לאזור הגיבור */
    .hero {
        padding: 0.6rem 0;
    }
    
    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.2rem;
    }
    
    .profession-title {
        font-size: 0.95rem;
        margin: 0 0 0.6rem;
        line-height: 1.3;
    }
    
    .hero-image-container {
        margin: 8px 0 12px;
    }
    
    .hero-image {
        width: 120px;
        height: 120px;
    }
    
    /* תיקונים לטקסט המנוקד */
    .intro-text-container {
        max-width: 100%;
        padding: 0.6rem;
        margin-bottom: 1.2rem;
    }
    
    .intro-heading {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0.7rem;
    }
    
    .intro-content, .intro-footer {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .intro-separator {
        margin: 0.6rem auto;
    }
    
    /* תיקונים לכפתורים */
    .btn, .contact-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    /* תיקונים לשאר החלקים */
    section {
        padding: 2rem 0;
    }
    
    .section-title h2 {
        font-size: 1.4rem;
    }
    
    .cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-img {
        height: 200px;
    }
    
    .crystal-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.8rem;
    }
    
    .crystal-grid .crystal-img {
        width: 160px;
        height: 160px;
    }
    
    .crystal-grid .crystal-img img {
        width: 160px;
        height: 160px;
    }
    
    .crystal-grid .crystal-info {
        padding: 0.6rem;
        max-width: 180px;
    }
    
    .crystal-grid .crystal-name {
        font-size: 0.9rem;
    }
    
    .crystal-grid .crystal-properties {
        font-size: 0.75rem;
    }
    
    /* התאמות Carousel למובייל */
    .crystal-carousel-wrapper {
        position: relative;
        padding: 1.5rem 0;
        margin: 2rem 0;
    }
    
    .crystal-carousel-track .crystal-item {
        flex: 0 0 100%;
        transform: scale(1);
        opacity: 1;
    }
    
    .crystal-carousel-track .crystal-item.center-item {
        flex: 0 0 20% !important;
        transform: scale(1) !important;
        width: 20% !important;
        max-width: 20% !important;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .carousel-btn-prev {
        right: 5px;
    }
    
    .carousel-btn-next {
        left: 5px;
    }
    
    .crystal-carousel-container {
        position: relative;
    }
    
    .crystal-carousel-track .crystal-item.center-item .crystal-img {
        height: 200px !important;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-img {
        height: 200px;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    /* תיקונים לטופס צור קשר במובייל */
    .contact-form {
        padding: 25px;
    }
    
    #contact .section-title h2 {
        font-size: 26px;
    }
}

/* התאמות למובייל - עמוד קריסטלים */
@media screen and (max-width: 768px) {
    html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .crystal-hero {
        padding: 1rem 0 !important;
        margin-top: 0 !important;
        min-height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
    }
    
    .crystal-hero .container {
        padding: 0 0.6rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .crystal-hero .hero-content {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .crystal-hero h1 {
        font-size: 1.4rem !important;
        margin-bottom: 0.5rem !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    .crystal-separator {
        margin: 0.5rem auto !important;
        width: 60% !important;
    }
    
    .crystal-hero-text {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0 !important;
        padding: 0 0.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    #crystal-therapy {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    #crystal-types {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    #crystal-therapy .container,
    #crystal-types .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 0.6rem !important;
    }
    
    header {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    header .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 0.6rem !important;
    }
    
    section {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    section .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 0.6rem !important;
    }
    
    .crystal-grid {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .crystal-item {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    footer {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    footer .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 0.6rem !important;
    }
    
    .content-box {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .crystal-intro-box {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1rem 0.8rem !important;
    }
    
    .benefits-grid {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .benefit-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    #contact-crystal {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .contact-section-crystal {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .contact-crystal-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 0.6rem !important;
    }
    
    .crystal-quote {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .crystal-quote blockquote {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0.8rem !important;
        font-size: 0.9rem !important;
    }
    
    .section-title {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 0.6rem !important;
    }
    
    .section-title h2 {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: 1.3rem !important;
    }
    
    .crystal-img {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .crystal-img img {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .crystal-info {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .crystal-name {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: 0.95rem !important;
    }
    
    .crystal-properties {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: 0.8rem !important;
    }
    
    .crystal-separator-mini {
        width: 30px !important;
        max-width: 30px !important;
        margin: 0 auto 0.5rem auto !important;
    }
    
    .benefit-icon {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .benefit-icon i {
        font-size: 2rem !important;
    }
    
    .benefit-item h3 {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: 1rem !important;
    }
    
    .benefit-item p {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: 0.85rem !important;
    }
    
    .contact-crystal-content h2 {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: 1.2rem !important;
    }
    
    .contact-crystal-content p {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: 0.9rem !important;
    }
    
    .crystal-contact-btn {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0.7rem 1.2rem !important;
        font-size: 0.85rem !important;
    }
    
    .crystal-info p {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: 0.75rem !important;
    }
    
    .content-box p {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }
    
    .crystal-intro-box p {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }
}

/* Media Queries נוספים לטלפונים קטנים במיוחד */
@media screen and (max-width: 480px) {
    .crystal-hero {
        padding: 0.8rem 0 !important;
    }
    
    .crystal-hero h1,
    .about-hero h1,
    .names-hero h1,
    .contact-hero h1 {
        font-size: 1.2rem !important;
    }
    
    .crystal-hero-text {
        font-size: 0.85rem !important;
    }
    
    .crystal-quote blockquote,
    .names-quote blockquote {
        font-size: 0.9rem;
    }
    
    .benefit-item,
    .direction-item {
        padding: 1.2rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

.about-hero-image {
    width: 300px;
    height: 300px;
}

.about-img-frame {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
}
