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

:root {
    --bg-main: #0d1117;
    --bg-surface: #131820;
    --bg-alt: #181d27;
    --text-primary: #f7f9fc;
    --text-secondary: #a7b4c7;
    --accent: #3a7bd5;
    --accent-soft: #4f8fe0;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --header-height: 76px;
    --touch-target: 44px; /* Minimum touch target size for mobile */
    --pole-red: #E41D2E;
    --pole-blue: #1F4BA3;
    --pole-white: #FFFFFF;
    --pole-width: 34px; /* רוחב פס בדסקטופ */
    --gutter: 20px; /* ריווח פנימי לצדדים */
    font-family: 'Assistant', sans-serif;
}

@media (max-width: 560px) {
    :root {
        --header-height: 64px;
        --radius-lg: 20px;
        --radius-md: 16px;
        --radius-sm: 10px;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Assistant', sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 560px) {
    body {
        font-size: 16px;
        line-height: 1.7;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -1000px;
    left: -1000px;
    background: var(--accent);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    z-index: 9999;
    text-decoration: none;
}

.skip-link:focus {
    top: 16px;
    left: 16px;
    outline: 3px solid var(--accent-soft);
    outline-offset: 2px;
}

/* Focus styles - WCAG AA compliant */
:focus {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* Reduced motion */
@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;
    }
    
    .side-pole {
        animation: none !important;
    }
}

.page-background {
    position: fixed;
    inset: 0;
    background:
        url('new_background.JPG') center center / cover no-repeat,
        var(--bg-main);
    z-index: -1;
    pointer-events: none;
}

.page-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 17, 23, 0.3);
    z-index: 0;
}

/* פסי ברברשופ בצדדים */
.side-pole {
    position: fixed;
    top: 0;
    bottom: 0;
    width: var(--pole-width);
    z-index: 1;
    background: repeating-linear-gradient(
        45deg,
        var(--pole-white) 0 16px,
        var(--pole-red) 16px 32px,
        var(--pole-white) 32px 48px,
        var(--pole-blue) 48px 64px
    );
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

.side-pole.left {
    left: 0;
}

.side-pole.right {
    right: 0;
}

/* אנימציה עדינה לסיבוב */
@keyframes pole-scroll {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 128px;
    }
}

.side-pole {
    animation: pole-scroll 12s linear infinite;
}


.container {
    width: min(1080px, 92%);
    margin: 0 auto;
    padding: 0 calc(var(--gutter) + var(--pole-width));
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 16px;
    }
    
    /* מירכוז כל התוכן בנייד */
    .section-header {
        text-align: center;
    }
    
    .section-header h1,
    .section-header h2 {
        text-align: center;
    }
    
    .contact-layout > div:first-child p {
        text-align: center;
    }
    
    .booking-form h3 {
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .sidebar-content {
        text-align: center;
    }
    
    .sidebar-content h3 {
        text-align: center;
    }
    
    .sidebar-content ul {
        text-align: center;
        list-style: none;
        padding: 0;
    }
    
    .sidebar-content li {
        text-align: center;
    }
}

@media (max-width: 1024px) {
    :root {
        --pole-width: 24px;
        --gutter: 16px;
    }
}

@media (max-width: 768px) {
    :root {
        --pole-width: 18px;
        --gutter: 12px;
    }
    
    .container {
        padding: 0 calc(var(--gutter) + var(--pole-width));
    }
}

@media (max-width: 560px) {
    :root {
        --pole-width: 16px;
        --gutter: 10px;
    }
    
    .container {
        padding: 0 calc(var(--gutter) + var(--pole-width));
    }
}

.site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(12px);
    background: 
        url('header_background.JPG') center center / 200% auto no-repeat,
        rgba(13, 17, 23, 0.85);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 100;
    position: relative;
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 17, 23, 0.5);
    z-index: -1;
}

@media (max-width: 768px) {
    .site-header {
        background: 
            url('header_background.JPG') center center / cover no-repeat,
            rgba(13, 17, 23, 0.75);
    }
    
    .site-header::before {
        background: rgba(13, 17, 23, 0.3);
    }
    
    .site-header.scrolled {
        background: 
            url('header_background.JPG') center center / cover no-repeat,
            rgba(13, 17, 23, 0.85);
    }
    
    .site-header.scrolled::before {
        background: rgba(13, 17, 23, 0.4);
    }
}

@media (max-width: 560px) {
    .site-header {
        background: 
            url('header_background.JPG') center center / cover no-repeat,
            rgba(13, 17, 23, 0.7);
    }
    
    .site-header::before {
        background: rgba(13, 17, 23, 0.25);
    }
    
    .site-header.scrolled {
        background: 
            url('header_background.JPG') center center / cover no-repeat,
            rgba(13, 17, 23, 0.8);
    }
    
    .site-header.scrolled::before {
        background: rgba(13, 17, 23, 0.35);
    }
}

.site-header.scrolled {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    position: relative;
}

.header-profile-picture {
    position: absolute;
    top: 8px;
    right: 16px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--text-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
    background: var(--bg-surface);
}

.logo {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    font-weight: 700;
}

.logo-english {
    font-size: 1.4rem;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.logo-hebrew {
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
}

.header-logo {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.header-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 780px) {
    .header-logo {
        right: 60px;
    }
    
    .header-image {
        height: 50px;
    }
    
    .header-profile-picture {
        width: 82px;
        height: 82px;
        top: 6px;
        right: 14px;
    }
}

@media (max-width: 560px) {
    .header-logo {
        right: 50px;
    }
    
    .header-image {
        height: 45px;
    }
    
    .header-profile-picture {
        width: 75px;
        height: 75px;
        top: 6px;
        right: 12px;
        border-width: 2px;
    }
}

.site-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-list a {
    transition: color 0.2s ease;
    padding: 8px 4px;
    min-height: var(--touch-target);
    display: inline-flex;
    align-items: center;
}

.nav-list a:hover,
.nav-list a:focus {
    color: var(--text-primary);
}

.nav-cta {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(58, 123, 213, 0.4);
    color: var(--text-primary);
    min-height: var(--touch-target);
    display: inline-flex;
    align-items: center;
}

@media (max-width: 560px) {
    .nav-list a {
        padding: 14px 8px;
        font-size: 1.05rem;
    }
    
    .nav-cta {
        padding: 12px 22px;
        font-size: 1.05rem;
    }
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: rgba(19, 24, 32, 0.9);
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    margin: 0 auto;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(-45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(45deg);
}

.hero {
    padding: calc(var(--header-height) + 60px) 0 100px;
}

@media (max-width: 560px) {
    .hero {
        padding: calc(var(--header-height) + 40px) 0 60px;
    }

    .hero-layout {
        gap: 28px;
    }

    .frame {
        padding: 10px;
        max-width: 360px;
    }

    .frame img {
        max-height: clamp(180px, 48vw, 280px);
    }

    .note {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

.hero-layout {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 40px;
    align-items: start;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.sidebar-left,
.sidebar-right {
    display: flex;
    flex-direction: column;
}

.sidebar-content {
    padding: 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.sidebar-content h3 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
}

.hours-list,
.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .hours-list,
    .services-list {
        align-items: center;
        width: 100%;
    }
    
    .hours-list li,
    .services-list li {
        text-align: center;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 560px) {
    .hours-list li,
    .services-list li {
        text-align: center;
    }
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.services-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding-right: 20px;
}

.services-list li::before {
    content: '✂';
    position: absolute;
    right: 0;
    color: var(--accent);
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .hero-layout {
        grid-template-columns: 180px 1fr 180px;
        gap: 30px;
    }
}

@media (max-width: 920px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sidebar-left,
    .sidebar-right {
        order: 2;
    }

    .hero-content {
        order: 1;
    }

    .sidebar-content {
        position: static;
    }

    .sidebar-left,
    .sidebar-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 560px) {
    .sidebar-left,
    .sidebar-right {
        grid-template-columns: 1fr;
    }

    .sidebar-content {
        padding: 20px;
    }

    .sidebar-content h3 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(58, 123, 213, 0.12);
    color: var(--accent);
    font-size: 0.88rem;
    letter-spacing: 0.06em;
}

.hero h1 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.2;
}

.hero p {
    color: var(--text-secondary);
    max-width: 520px;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

@media (max-width: 560px) {
    .hero h1 {
        margin-bottom: 16px;
    }
    
    .hero p {
        margin-bottom: 24px;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.2s ease;
    min-height: var(--touch-target);
    min-width: 140px;
    text-align: center;
}

@media (max-width: 560px) {
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-width: 140px;
        width: auto;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: auto;
        min-width: 180px;
        max-width: 90%;
    }
}

.btn.primary {
    background: var(--accent);
    color: var(--bg-main);
}

.btn.primary:hover,
.btn.primary:focus {
    transform: translateY(-2px);
}

.btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
}

.btn.secondary:hover,
.btn.secondary:focus {
    transform: translateY(-2px);
}

.hero-media {
    grid-column: span 5;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
}

/* Hero image wrapper: keeps top image modest and tidy */
.frame {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-surface);
    box-shadow: var(--shadow);
    padding: 14px;
    width: 100%;
    max-width: 460px;
}

.frame img {
    display: block;
    width: 100%;
    height: auto;
    max-height: clamp(200px, 38vw, 380px);
    object-fit: contain;
    border-radius: var(--radius-md);
}

.note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.led-strip {
    height: 6px;
    margin: 0 auto;
    width: min(960px, 85%);
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(58, 123, 213, 0.6), rgba(255, 255, 255, 0.05));
    box-shadow: 0 0 12px rgba(58, 123, 213, 0.26);
}

.led-strip.subtle {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(58, 123, 213, 0.35), rgba(255, 255, 255, 0.03));
    box-shadow: 0 0 8px rgba(58, 123, 213, 0.15);
}

.section {
    padding: 90px 0;
}

@media (max-width: 560px) {
    .section {
        padding: 50px 0;
    }
}

.gallery-logo {
    display: block;
    margin: 0 auto 24px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--text-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .gallery-logo {
        width: 100px;
        height: 100px;
        border-width: 3px;
        margin-bottom: 20px;
    }
}

@media (max-width: 560px) {
    .gallery-logo {
        width: 72px;
        height: 72px;
        border-width: 3px;
        margin-bottom: 16px;
    }
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.section-header.center {
    align-items: center;
    text-align: center;
}

@media (max-width: 768px) {
    .section-header {
        align-items: center;
        text-align: center;
        gap: 14px;
        margin-bottom: 32px;
    }
}

@media (max-width: 560px) {
    .section-header {
        margin-bottom: 28px;
        gap: 12px;
    }
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section h1,
.section h2 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .section h1,
    .section h2 {
        text-align: center;
    }
}

@media (max-width: 560px) {
    .section h1,
    .section h2 {
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 560px) {
    .section h2 {
        margin-bottom: 20px;
    }
}

.story-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    color: var(--text-secondary);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    font-size: clamp(1rem, 2.5vw, 1.05rem);
}

@media (max-width: 560px) {
    .story-grid {
        padding: 24px 20px;
        gap: 20px;
        font-size: 1rem;
        line-height: 1.75;
    }
}

.section-lead {
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 28px;
}

/* Simple image gallery - perfect for mobile */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
    justify-items: center;
    width: 100%;
    max-width: 100%;
}

.gallery-item {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.gallery-item:hover,
.gallery-item:focus {
    transform: none;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.gallery-item:active {
    transform: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: none;
}

.gallery-item:hover img,
.gallery-item:focus img {
    transform: none;
}

@media (max-width: 560px) {
    .gallery-item {
        transform: none !important;
    }
    
    .gallery-item img {
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .image-gallery {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
        margin-top: 32px;
        justify-items: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 560px) {
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 24px;
        justify-items: center;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    
    .gallery-item {
        aspect-ratio: 1;
        width: 100%;
    }
}

.contact-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    align-items: start;
    justify-items: center;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .contact-layout {
        justify-items: center;
        gap: 24px;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .contact-layout {
        justify-items: center;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.contact-layout > div:first-child {
    grid-column: span 12;
    color: var(--text-secondary);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-layout > div:first-child {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .contact-layout > div:first-child {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        align-items: center;
        justify-content:
         center;
    }
}

@media (max-width: 560px) {
    .contact-layout > div:first-child {
        text-align: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        margin: 0 auto;
        padding-right: 13px;
    }
    
    .contact-layout > div:first-child .section-header {
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        margin: 0 auto;
        padding-right: 15px;
    }
    
    .contact-layout > div:first-child .section-header h2 {
        text-align: center;
        margin: 0 auto;
        width: 100%;
        padding-right: 26px;
    }
    
    .contact-layout > div:first-child .section-tag {
        margin: 0 auto;
        padding-right: 13px;
    }
    
    .contact-layout > div:first-child p {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
        padding-right: 17px;
    }
}

@media (max-width: 768px) {
    .contact-layout {
        justify-items: center;
    }
    
    .contact-layout > div:first-child {
        text-align: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-layout > div:first-child .section-header {
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .contact-layout > div:first-child p {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .contact-layout {
        justify-items: center;
    }
    
    .contact-layout > div:first-child {
        text-align: center;
        align-items: center;
        width: 100%;
    }
    
    .contact-layout > div:first-child .section-header {
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .contact-layout > div:first-child p {
        text-align: center;
        max-width: 100%;
    }
}

.contact-cards {
    grid-column: span 12;
    display: flex;
    flex-direction: row;
    gap: 18px;
    margin-top: 32px;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .contact-cards {
        max-width: 100%;
        margin: 32px auto 0;
        gap: 12px;
        width: 100%;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 560px) {
    .contact-cards {
        max-width: 100%;
        gap: 10px;
        margin-top: 28px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    
    .contact-card {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
        padding: 16px 12px;
    }
    
    .contact-card h3 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .contact-card .social-icon {
        width: 28px;
        height: 28px;
    }
}

.contact-card {
    padding: 22px;
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-secondary);
    align-items: center;
    text-align: center;
}

.contact-card h3 {
    color: var(--text-primary);
    font-size: 1.05rem;
}

@media (max-width: 560px) {
    .contact-card {
        padding: 20px;
        width: 100%;
        max-width: 320px;
    }
}

.contact-card a {
    color: var(--accent);
    transition: color 0.2s ease;
    min-height: var(--touch-target);
    display: inline-flex;
    align-items: center;
}

.contact-card a:hover,
.contact-card a:focus {
    color: var(--accent-soft);
}

.social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.whatsapp-icon {
    color: #25D366;
    fill: #25D366;
}

/* טופס הזמנת תור */
.booking-form-container {
    grid-column: span 12;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (max-width: 768px) {
    .booking-form-container {
        margin-top: 32px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 560px) {
    .booking-form-container {
        margin-top: 28px;
        width: 100%;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.booking-form {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 600px;
}

@media (max-width: 768px) {
    .booking-form {
        max-width: 280px;
        padding: 20px;
        margin: 0 auto;
        gap: 16px;
    }
    
    .booking-form h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 560px) {
    .booking-form {
        max-width: 330px;
        width: 330px;
        padding: 24px 20px;
        gap: 16px;
        margin: 0 auto;
        margin-right: 40px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    
    .booking-form h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
        text-align: center;
        width: 100%;
    }
    
    .form-group {
        gap: 8px;
        flex-shrink: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .form-group label {
        font-size: 0.9rem;
        font-weight: 600;
        width: 100%;
        text-align: right;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group textarea {
        min-height: 80px;
        resize: vertical;
    }
    
    .booking-submit {
        padding: 16px 24px;
        font-size: 1rem;
        margin-top: 12px;
        width: 100%;
    }
}

.booking-form h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-family: 'Frank Ruhl Libre', serif;
    text-align: center;
}

@media (max-width: 560px) {
    .booking-form h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
}

@media (max-width: 768px) {
    .booking-form-container {
        margin-top: 32px;
    }
    
    .booking-form {
        padding: 28px;
        max-width: 100%;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Assistant', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-submit {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    width: 100%;
}

@media (max-width: 560px) {
    .booking-submit {
        padding: 18px 24px;
        font-size: 1rem;
    }
}

.booking-submit svg {
    width: 20px;
    height: 20px;
}

.booking-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-group input.error,
.form-group input.error:focus {
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
}

.form-group input.error::placeholder {
    color: #ff4444;
}

.booking-form .error-message {
    color: #ff4444;
    font-size: 0.9rem;
    margin-top: 4px;
    display: none;
}

.form-group input.error + .error-message {
    display: block;
}

@media (max-width: 768px) {
    .booking-form {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .contact-card {
        padding: 20px;
    }
    
    .contact-card a {
        font-size: 1.05rem;
    }
    
    .booking-form {
        padding: 20px;
    }
    
    .booking-form h3 {
        font-size: 1.3rem;
    }
}

.footer {
    padding: 50px 0;
    background: rgba(12, 16, 22, 0.95);
    border-top: 1px solid var(--border);
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
    align-items: center;
}

.footer-logo {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.4rem;
    display: inline-block;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    gap: 14px;
    color: var(--text-secondary);
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--text-primary);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 40px 20px;
}

.modal.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.modal .close {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    min-width: var(--touch-target);
    min-height: var(--touch-target);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(19, 24, 32, 0.85);
    color: var(--text-primary);
    font-size: 1.8rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    max-width: min(860px, 96vw);
    max-height: 85vh;
    border-radius: var(--radius-md);
    object-fit: contain;
    box-shadow: var(--shadow);
}

@media (max-width: 560px) {
    .modal {
        padding: 60px 16px 20px;
    }
    
    .modal .close {
        top: 20px;
        left: 20px;
        width: 44px;
        height: 44px;
        font-size: 1.6rem;
    }
    
    .modal-content {
        max-width: 100%;
        max-height: 80vh;
    }
    
    .modal-caption {
        font-size: 0.9rem;
        padding: 0 16px;
    }
}

.modal-caption {
    color: var(--text-secondary);
    text-align: center;
    max-width: 480px;
}

@media (max-width: 920px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-content,
    .hero-media {
        grid-column: auto;
        align-items: center;
        width: 100%;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-layout > div:first-child,
    .contact-cards {
        grid-column: auto;
    }
}

@media (max-width: 780px) {
    .site-nav {
        position: absolute;
        top: var(--header-height);
        right: 0;
        left: 0;
        width: 100%;
        background: rgba(13, 17, 23, 0.97);
        border-bottom: 1px solid var(--border);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        display: flex;
        justify-content: center;
        transition: opacity 0.2s ease, transform 0.2s ease;
        padding: 18px 0 26px;
        box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
    }

    .site-nav.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        gap: 12px;
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 320px;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 0;
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, 0.03);
        transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-list a:hover,
    .nav-list a:focus {
        background: rgba(58, 123, 213, 0.16);
        color: var(--text-primary);
    }

    .nav-cta {
        border-radius: var(--radius-sm);
        border: 1px solid rgba(58, 123, 213, 0.4);
    }

    .nav-toggle {
        display: flex;
    }
}

/* iPhone specific optimizations */
@supports (-webkit-touch-callout: none) {
    /* iOS Safari specific styles */
    body {
        -webkit-tap-highlight-color: rgba(58, 123, 213, 0.2);
    }
    
    .site-header {
        padding-top: env(safe-area-inset-top);
    }
    
    .footer {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

@media (max-width: 560px) {
    .hero {
        padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 30px);
        padding-bottom: 50px;
    }

    .section {
        padding: 70px 0;
    }

    .story-grid {
        padding: 24px 20px;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        gap: 18px;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
        line-height: 1.3;
    }

    .hero p {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-actions {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }

    .hero-actions .btn {
        flex: 1 1 140px;
        padding: 16px 24px;
        font-size: 1rem;
        min-width: 100%;
    }

    .hero-media {
        align-items: stretch;
    }

    .frame {
        width: 100%;
        padding: 16px;
    }

    .note {
        align-self: stretch;
        justify-content: center;
        padding: 10px 0;
    }

    .led-strip {
        width: 92%;
        box-shadow: 0 0 8px rgba(58, 123, 213, 0.18);
    }

    .contact-cards {
        gap: 14px;
        width: 100%;
    }

    .contact-card {
        padding: 20px;
        width: 100%;
    }

    .contact-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .contact-card a {
        font-size: 1rem;
        padding: 8px 0;
    }

    .logo {
        font-size: 1.4rem;
    }
    
    .logo-image {
        height: 40px;
        max-width: 150px;
    }

    .header-inner {
        padding: 0 16px;
    }
    
    .section-header {
        margin-bottom: 28px;
    }
    
    .section-header h2 {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        line-height: 1.3;
    }
    
    .section-tag {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
    
    .section-lead {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .contact-layout p {
        font-size: 1rem;
        line-height: 1.75;
        margin-bottom: 28px;
    }

    .contact-cards,
    .footer-layout {
        justify-items: center;
    }

    .footer-layout {
        padding: 0 20px;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-links a {
        min-height: var(--touch-target);
        display: inline-flex;
        align-items: center;
        padding: 12px 0;
    }

    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 24px;
    }

    .gallery-item {
        aspect-ratio: 1;
        border-radius: var(--radius-sm);
    }

    .container {
        padding: 0 16px;
    }
}

/* iPhone SE and smaller */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .image-gallery {
        gap: 10px;
    }

    .contact-card {
        padding: 18px;
    }
}

/* iPhone landscape */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        padding-top: calc(var(--header-height) + 20px);
        padding-bottom: 40px;
    }

    .section {
        padding: 50px 0;
    }
}
