/* ========== Variables ========== */
:root {
    --royal-blue: #1a3a8f;
    --royal-blue-light: #2a4fba;
    --orange: #f58220;
    --orange-light: #ff9f43;
    --gold: #f5c518;
    --gold-light: #ffe066;
    --green: #2ecc71;
    --green-dark: #27ae60;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --dark: #1a1a2e;
    --gray: #6c757d;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.2);
    --radius: 16px;
    --transition: all 0.3s ease;
}

/* ========== Reset & Base ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    font-family: 'Rubik', sans-serif;
    direction: rtl;
    color: var(--dark);
    background: var(--off-white);
    line-height: 1.75;
    overflow-x: hidden;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    font-size: 1.1rem;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Navbar - Kids Star Style ========== */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: linear-gradient(180deg, #1a3a8f 0%, #2547a8 100%);
    padding: 8px 0;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(26, 58, 143, 0.35);
    border-bottom: 4px solid var(--gold);
}

.navbar.scrolled {
    background: linear-gradient(180deg, #1a3a8f 0%, #1f3f9a 100%);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    padding: 4px 0;
    border-bottom: 4px solid var(--gold);
}

/* Decorative dots pattern on the gold border */
.navbar::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background-image: repeating-linear-gradient(
        90deg,
        var(--gold) 0,
        var(--gold) 20px,
        var(--orange) 20px,
        var(--orange) 25px,
        var(--gold) 25px,
        var(--gold) 45px
    );
    pointer-events: none;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.nav-logo {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.nav-logo-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    background: var(--white);
    transition: transform 0.4s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.nav-logo:hover .nav-logo-img {
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 6px 18px rgba(245, 197, 24, 0.5);
}

/* Hide the text on smaller screens - the logo image speaks for itself */
@media (max-width: 1100px) {
    .nav-logo span {
        display: none;
    }
}

.nav-menu {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    padding: 9px 14px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-menu a:hover {
    background: rgba(245, 197, 24, 0.15);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Highlight the booking link - the most important CTA */
.nav-menu a[href="#booking"] {
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: var(--white);
    font-weight: 800;
    padding: 9px 20px;
    box-shadow: 0 3px 12px rgba(245, 130, 32, 0.4);
}

.nav-menu a[href="#booking"]:hover {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 18px rgba(245, 130, 32, 0.6);
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========== Hero - Magical Forest Background ========== */
.hero {
    min-height: 80vh;
    padding: 110px 20px 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('images/mimi_beackround.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 58, 143, 0.25) 0%,
        rgba(13, 31, 92, 0.15) 35%,
        rgba(22, 45, 122, 0.35) 100%
    );
    pointer-events: none;
}

/* Floating sparkle decorations */
.hero-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.sparkle {
    position: absolute;
    font-size: 2rem;
    opacity: 0.85;
    animation: float-sparkle 4s ease-in-out infinite;
    text-shadow: 0 0 12px rgba(255, 240, 150, 0.6);
}

.sparkle.s1 { top: 15%; right: 8%; font-size: 2.5rem; animation-delay: 0s; }
.sparkle.s2 { top: 25%; left: 10%; font-size: 1.8rem; animation-delay: 0.6s; }
.sparkle.s3 { top: 55%; right: 5%; font-size: 2.2rem; animation-delay: 1.2s; }
.sparkle.s4 { top: 12%; left: 25%; font-size: 1.5rem; animation-delay: 1.8s; }
.sparkle.s5 { top: 70%; left: 8%; font-size: 2rem; animation-delay: 0.4s; }
.sparkle.s6 { top: 35%; left: 6%; font-size: 1.8rem; animation-delay: 2.2s; }
.sparkle.s7 { top: 65%; right: 15%; font-size: 1.6rem; animation-delay: 1.5s; }
.sparkle.s8 { top: 80%; right: 12%; font-size: 2.2rem; animation-delay: 2.8s; }

@keyframes float-sparkle {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.5; }
    50% { transform: translateY(-25px) rotate(15deg) scale(1.15); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-poster {
    max-width: 460px;
    width: 88%;
    height: auto;
    border-radius: 28px;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(245, 197, 24, 0.4),
        0 0 0 6px rgba(245, 197, 24, 0.3);
    margin: 0 auto 28px;
    animation: float 4s ease-in-out infinite;
    display: block;
    border: 4px solid var(--gold);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 32px;
    font-weight: 900;
    text-shadow:
        2px 2px 0 #1a3a8f,
        -2px -2px 0 #1a3a8f,
        2px -2px 0 #1a3a8f,
        -2px 2px 0 #1a3a8f,
        0 4px 12px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* ========== Star Badge - תג כוכבת הילדים ========== */
.star-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff4081, #e91e63);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    border: 2.5px solid var(--gold);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.star-badge::before {
    content: '⭐';
    font-size: 1.1rem;
}

.star-badge-corner {
    position: absolute;
    top: 20px;
    left: 20px;
    transform: rotate(-12deg);
    z-index: 5;
    animation: badge-bounce 2.5s ease-in-out infinite;
}

@keyframes badge-bounce {
    0%, 100% { transform: rotate(-12deg) scale(1); }
    50% { transform: rotate(-12deg) scale(1.08); }
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Rubik', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 130, 32, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 58, 143, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 58, 143, 0.4);
}

.btn-youtube {
    background: #FF0000;
    color: var(--white);
}

.btn-youtube:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    font-size: 1.2rem;
    padding: 16px 40px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-phone {
    background: var(--royal-blue);
    color: var(--white);
    font-size: 1.2rem;
    padding: 16px 40px;
}

.btn-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 58, 143, 0.4);
}

.btn-podcast {
    padding: 12px 24px;
    font-size: 1rem;
}

.btn-spotify {
    background: #1DB954;
    color: var(--white);
}

.btn-apple {
    background: #FC3C44;
    color: var(--white);
}

.btn-ytmusic {
    background: #FF0000;
    color: var(--white);
}

.btn-podcast:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* ========== Page Hero (sub-pages) ========== */
.page-hero {
    position: relative;
    padding: 130px 20px 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--royal-blue) 0%, #2a4fba 100%);
    color: var(--white);
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(245, 197, 24, 0.25), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(245, 130, 32, 0.2), transparent 50%);
    pointer-events: none;
}

.page-hero > * {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin: 15px 0 12px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    color: var(--white);
}

.page-hero-subtitle {
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.page-hero-tags {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 18px;
}

.tag {
    background: var(--white);
    color: var(--royal-blue);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.tag-age { background: var(--orange); color: var(--white); }
.tag-duration { background: var(--gold); color: var(--royal-blue); }
.tag-location { background: var(--white); color: var(--royal-blue); }

/* Page hero color variations */
.page-hero-gold { background: linear-gradient(135deg, #c98e0a 0%, #f5a623 100%); }
.page-hero-green { background: linear-gradient(135deg, #1e7e3c 0%, #2ecc71 100%); }
.page-hero-purple { background: linear-gradient(135deg, #5d2dba 0%, #7e3ff2 100%); }
.page-hero-blue { background: linear-gradient(135deg, #1a3a8f 0%, #2a4fba 100%); }
.page-hero-red { background: linear-gradient(135deg, #c41010 0%, #ff2828 100%); }
.page-hero-orange { background: linear-gradient(135deg, #d9530d 0%, #f58220 100%); }

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    background: rgba(255,255,255,0.18);
    padding: 5px 12px;
    border-radius: 50px;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.breadcrumb a:hover {
    background: var(--gold);
    color: var(--royal-blue);
}

.breadcrumb span:not(a) {
    color: var(--white);
    font-weight: 700;
}

/* ========== Services Hub (Homepage) ========== */
.services-hub {
    background: linear-gradient(135deg, #fff9e6 0%, #fff5d8 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.services-grid > :nth-child(4) {
    grid-column: 1 / 2;
}

.services-grid > :nth-child(5) {
    grid-column: 3 / 4;
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    padding: 38px 28px;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    box-shadow:
        0 10px 30px rgba(26, 58, 143, 0.12),
        0 0 0 4px var(--gold);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(26, 58, 143, 0.22),
        0 0 0 4px var(--orange);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 5px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-8deg);
}

.service-card h3 {
    font-size: 1.7rem;
    color: var(--royal-blue);
    margin: 0;
    font-weight: 900;
}

.service-card p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.service-cta {
    color: var(--orange);
    font-weight: 800;
    font-size: 1.05rem;
    margin-top: auto;
    padding: 10px 24px;
    background: rgba(245, 130, 32, 0.12);
    border-radius: 50px;
    transition: var(--transition);
}

.service-card:hover .service-cta {
    background: var(--orange);
    color: var(--white);
}

/* Specific card colors */
.service-birthdays { box-shadow: 0 10px 30px rgba(26, 58, 143, 0.12), 0 0 0 4px var(--gold); }
.service-shows { box-shadow: 0 10px 30px rgba(26, 58, 143, 0.12), 0 0 0 4px var(--royal-blue); }
.service-education { box-shadow: 0 10px 30px rgba(26, 58, 143, 0.12), 0 0 0 4px var(--green); }
.service-youtube { box-shadow: 0 10px 30px rgba(26, 58, 143, 0.12), 0 0 0 4px #FF0000; }
.service-podcast { box-shadow: 0 10px 30px rgba(26, 58, 143, 0.12), 0 0 0 4px #7e3ff2; }

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid > :nth-child(4),
    .services-grid > :nth-child(5) {
        grid-column: auto;
    }

    .services-grid > :nth-child(5) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 0 5px;
    }

    .services-grid > :nth-child(5) {
        grid-column: 1;
    }

    .service-card {
        padding: 28px 22px;
        background: linear-gradient(135deg, #ffffff 0%, #fffaeb 100%);
        box-shadow:
            0 10px 30px rgba(26, 58, 143, 0.2),
            0 0 0 4px var(--gold),
            0 0 0 8px rgba(245, 197, 24, 0.2);
        border-radius: 22px;
    }

    .service-card::after {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 6px;
        background: linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
        border-radius: 22px 22px 0 0;
    }

    .service-icon {
        font-size: 4rem;
    }

    .service-card h3 {
        font-size: 1.6rem;
    }

    .service-card p {
        font-size: 1rem;
    }

    .service-cta {
        font-size: 1rem;
        padding: 10px 22px;
    }

    .services-hub {
        background: linear-gradient(135deg, #fff5cf 0%, #fff0b8 100%);
    }

    .page-hero {
        padding: 110px 16px 45px;
    }

    .page-hero h1 {
        font-size: 1.9rem;
        line-height: 1.2;
    }

    .page-hero-subtitle {
        font-size: 1.05rem;
    }

    .page-hero-tags {
        gap: 8px;
    }

    .tag {
        font-size: 0.85rem;
        padding: 6px 14px;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }

    .breadcrumb a {
        padding: 4px 10px;
    }

    .final-cta-content h2 {
        font-size: 1.6rem;
    }

    .final-cta-content p {
        font-size: 1.05rem;
    }
}

/* ========== Final CTA Section ========== */
.final-cta {
    background: linear-gradient(135deg, var(--royal-blue) 0%, #2a4fba 100%);
    color: var(--white);
    text-align: center;
    padding: 70px 20px;
    position: relative;
    overflow: hidden;
}

.final-cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 18px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.final-cta-content p {
    color: var(--gold-light);
    font-size: 1.3rem;
    margin-bottom: 32px;
}

/* Concept detail page (single concept) */
.concept-detail-page {
    background: linear-gradient(135deg, #fff8e1 0%, #ffeec8 100%);
    border: 3px solid var(--gold);
    border-radius: 24px;
    padding: 40px 35px;
}

.concept-detail-page .concept-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.concept-detail-flyer img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 4px solid var(--white);
}

.reels-section-title {
    text-align: center;
    color: var(--royal-blue);
    font-size: 1.8rem;
    font-weight: 900;
    margin-top: 50px;
    margin-bottom: 15px;
}

@media (max-width: 900px) {
    .concept-detail-page .concept-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer contact line */
.footer-contact {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-top: 8px;
}

.section-light {
    background: var(--off-white);
}

/* ========== Sections ========== */
.section {
    padding: 80px 0;
}

.section-compact {
    padding: 50px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 18px;
    color: var(--royal-blue);
}

.section-desc {
    text-align: center;
    font-size: 1.3rem;
    color: var(--dark);
    max-width: 750px;
    margin: 0 auto 45px;
    line-height: 1.7;
    font-weight: 500;
}

/* Alternating section backgrounds */
.birthdays {
    background: var(--white);
}

.shows {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
}

.education {
    background: var(--white);
}

.youtube {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
}

.podcast {
    background: var(--white);
}

.contact {
    background: linear-gradient(135deg, var(--royal-blue), #0d1f5c);
    color: var(--white);
}

.contact .section-title {
    color: var(--gold);
}

.contact .section-desc {
    color: rgba(255, 255, 255, 0.85);
}

/* ========== About ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 4px solid var(--gold);
}

.about-text .star-badge {
    margin-bottom: 15px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--royal-blue);
    margin-bottom: 20px;
    font-weight: 900;
}

.about-text p {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 18px;
    line-height: 1.85;
    font-weight: 500;
}

/* ========== NEW Concept Cards - Birthdays Page ========== */
.concept-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 30px;
}

.concept-card-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    background: var(--white);
    border-radius: 28px;
    padding: 40px 28px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    border: 4px solid var(--gold);
    box-shadow: 0 12px 35px rgba(26, 58, 143, 0.15);
}

.concept-card-new::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
}

.concept-card-new:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(26, 58, 143, 0.25);
}

.concept-card-icon {
    font-size: 5rem;
    margin-bottom: 18px;
    filter: drop-shadow(0 6px 15px rgba(0,0,0,0.2));
    transition: transform 0.4s ease;
    display: inline-block;
}

.concept-card-new:hover .concept-card-icon {
    transform: scale(1.15) rotate(-10deg);
}

.concept-card-age {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(245, 130, 32, 0.4);
}

.concept-card-new h3 {
    font-size: 1.7rem;
    color: var(--royal-blue);
    margin: 0 0 12px;
    font-weight: 900;
    line-height: 1.3;
}

.concept-card-new p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 22px;
    min-height: 60px;
}

.concept-card-cta {
    color: var(--orange);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 12px 28px;
    background: rgba(245, 130, 32, 0.12);
    border-radius: 50px;
    transition: var(--transition);
}

.concept-card-new:hover .concept-card-cta {
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: var(--white);
    transform: scale(1.05);
}

/* Variations per concept */
.concept-card-dragon { border-color: var(--gold); }
.concept-card-dragon::before { background: linear-gradient(90deg, #f5c518, #f58220, #f5c518); }

.concept-card-nature { border-color: var(--green); }
.concept-card-nature::before { background: linear-gradient(90deg, #27ae60, #2ecc71, #27ae60); }
.concept-card-nature .concept-card-age { background: linear-gradient(135deg, #27ae60, #2ecc71); box-shadow: 0 4px 12px rgba(46, 204, 113, 0.4); }

.concept-card-mission { border-color: #7e3ff2; }
.concept-card-mission::before { background: linear-gradient(90deg, #7e3ff2, #5d2dba, #7e3ff2); }
.concept-card-mission .concept-card-age { background: linear-gradient(135deg, #7e3ff2, #5d2dba); box-shadow: 0 4px 12px rgba(126, 63, 242, 0.4); }

@media (max-width: 900px) {
    .concept-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Concept Detail Page - Flyer Card in horizontal scroll */
.concept-flyer-in-scroll {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 9/16;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    border: 4px solid var(--gold);
    background: var(--white);
}

.concept-flyer-in-scroll img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
}

@media (max-width: 640px) {
    .concept-flyer-in-scroll {
        width: 320px !important;
        min-width: 320px !important;
        max-width: 320px !important;
        height: 570px;
    }
}

/* ========== Concepts (3 shows) - Playful Storybook Cards ========== */
.concepts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px 35px;
    margin-bottom: 70px;
    padding: 25px 5px;
}

.concept-flyer {
    display: block;
    border-radius: 24px;
    overflow: visible;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
    text-decoration: none;
    position: relative;
    background: var(--white);
    padding: 12px;
    box-shadow:
        0 12px 35px rgba(26, 58, 143, 0.18),
        0 0 0 4px var(--gold),
        0 0 0 8px var(--white),
        0 0 0 11px var(--orange);
}

/* Playful rotation - each card slightly different angle */
.concept-flyer:nth-child(1) { transform: rotate(-2deg); }
.concept-flyer:nth-child(2) { transform: rotate(1deg) translateY(-8px); }
.concept-flyer:nth-child(3) { transform: rotate(-1.5deg); }

.concept-flyer img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.concept-flyer:hover {
    transform: rotate(0deg) translateY(-15px) scale(1.03) !important;
    z-index: 5;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
}

.concept-flyer:hover img {
    transform: scale(1.02);
}

/* "Click for details" tag on hover */
.concept-flyer::after {
    content: '👆 לחצו לפרטים';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 6px 18px rgba(245, 130, 32, 0.5);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease, bottom 0.3s ease;
    border: 2px solid var(--white);
}

.concept-flyer:hover::after {
    opacity: 1;
    bottom: -30px;
}

@media (max-width: 900px) {
    .concepts-grid {
        grid-template-columns: 1fr;
        gap: 60px 0;
    }

    .concept-flyer:nth-child(1),
    .concept-flyer:nth-child(2),
    .concept-flyer:nth-child(3) {
        transform: rotate(0deg);
    }
}

/* OLD CARD STYLES (still used for detail sections) */

.concept-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(26, 58, 143, 0.1);
    border: 3px solid transparent;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.concept-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(26, 58, 143, 0.18);
    border-color: var(--gold);
}

.concept-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
}

.concept-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.concept-media-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    gap: 8px;
}

.concept-media-placeholder span {
    font-size: 4rem;
}

.concept-media-placeholder small {
    font-size: 0.8rem;
    opacity: 0.7;
}

.concept-content {
    padding: 25px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.concept-content h3 {
    font-size: 1.35rem;
    color: var(--royal-blue);
    margin-bottom: 12px;
}

.concept-content p {
    color: var(--gray);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.btn-small {
    padding: 10px 22px;
    font-size: 0.95rem;
    align-self: flex-start;
}

/* ========== Interactive Promise Box - "החוגגים במרכז" ========== */
.interactive-promise {
    background: linear-gradient(135deg, #fff9e6 0%, #ffefc8 50%, #fff5d8 100%);
    border: 4px solid var(--gold);
    border-radius: 32px;
    padding: 45px 35px;
    text-align: center;
    max-width: 900px;
    margin: 50px auto 60px;
    box-shadow:
        0 15px 45px rgba(245, 130, 32, 0.2),
        inset 0 0 60px rgba(255, 200, 100, 0.18);
    position: relative;
    overflow: hidden;
}

.interactive-promise::before,
.interactive-promise::after {
    content: '✨';
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.6;
    animation: float-sparkle 3s ease-in-out infinite;
}

.interactive-promise::before {
    top: 18px;
    right: 25px;
}

.interactive-promise::after {
    bottom: 18px;
    left: 25px;
    animation-delay: 1.5s;
}

.promise-icon {
    font-size: 3rem;
    margin-bottom: 8px;
    display: inline-block;
    animation: party-bounce 2.5s ease-in-out infinite;
}

@keyframes party-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(-8deg); }
    75% { transform: translateY(-12px) rotate(8deg); }
}

.promise-intro {
    color: var(--royal-blue);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 18px;
    line-height: 1.4;
}

/* ✨ THE STAR - "החוגגים במרכז" - main spotlight ✨ */
.promise-spotlight {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 8px auto 25px;
    padding: 22px 50px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 50%, var(--orange) 100%);
    background-size: 200% auto;
    border-radius: 100px;
    box-shadow:
        0 12px 35px rgba(245, 130, 32, 0.45),
        inset 0 -4px 12px rgba(0,0,0,0.1),
        inset 0 4px 12px rgba(255,255,255,0.3);
    border: 3px solid var(--white);
    position: relative;
    animation: spotlight-shimmer 4s linear infinite;
}

@keyframes spotlight-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Glow effect around the spotlight */
.promise-spotlight::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, rgba(245,130,32,0.4), rgba(245,197,24,0.4));
    border-radius: 100px;
    filter: blur(20px);
    z-index: -1;
    opacity: 0.7;
    animation: glow-pulse 2.5s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

.promise-headline {
    color: var(--white);
    font-size: 2.6rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    text-shadow:
        2px 2px 0 rgba(0,0,0,0.15),
        0 0 30px rgba(255,255,255,0.4);
    letter-spacing: 1px;
}

.spotlight-star {
    font-size: 2.2rem;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(255, 240, 100, 0.8));
}

.spotlight-star.left {
    animation: star-spin-left 3s ease-in-out infinite;
}

.spotlight-star.right {
    animation: star-spin-right 3s ease-in-out infinite;
}

@keyframes star-spin-left {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(-360deg) scale(1.2); }
}

@keyframes star-spin-right {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(360deg) scale(1.2); }
}

.promise-text {
    color: var(--dark);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 0 0 10px;
}

.promise-footer {
    font-weight: 700;
    color: var(--royal-blue);
    font-size: 1.2rem;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 2px dashed rgba(245, 130, 32, 0.4);
}

.bouncing-heart {
    display: inline-block;
    animation: heart-pulse 1.2s ease-in-out infinite;
    font-size: 1.4em;
}

@media (max-width: 640px) {
    .interactive-promise {
        padding: 32px 18px;
        margin: 35px 0 40px;
    }

    .promise-intro {
        font-size: 1.1rem;
    }

    .promise-spotlight {
        padding: 16px 28px;
        gap: 12px;
        margin: 5px auto 22px;
    }

    .promise-headline {
        font-size: 1.7rem;
    }

    .spotlight-star {
        font-size: 1.5rem;
    }

    .promise-text {
        font-size: 1rem;
    }

    .promise-footer {
        font-size: 1.05rem;
    }

    .promise-icon {
        font-size: 2.5rem;
    }
}

/* ========== Concept Age Badge ========== */
.concept-media {
    position: relative;
}

.concept-age-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: var(--royal-blue);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

/* ========== Concept Detail Section (Featured) ========== */
.concept-detail {
    background: linear-gradient(135deg, #fff8e1 0%, #ffeec8 100%);
    border: 3px solid var(--gold);
    border-radius: 24px;
    padding: 50px 45px;
    margin: 60px 0 40px;
    scroll-margin-top: 90px;
    box-shadow: 0 10px 40px rgba(245, 197, 24, 0.15);
}

.concept-detail-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.concept-detail-header h3 {
    font-size: 2.5rem;
    color: var(--royal-blue);
    margin: 0;
    font-weight: 900;
}

.concept-detail-subtitle {
    font-size: 1.35rem;
    color: var(--orange);
    margin: 0;
    font-weight: 600;
    font-style: italic;
}

.concept-detail-age {
    background: var(--orange);
    color: var(--white);
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
}

/* Single column layout: text on top, reels below */
.concept-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.concept-detail-text {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.detail-block h4 {
    color: var(--royal-blue);
    font-size: 1.6rem;
    margin-bottom: 18px;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 8px;
    display: inline-block;
    font-weight: 800;
}

.detail-block p {
    color: var(--dark);
    line-height: 1.9;
    font-size: 1.2rem;
}

.detail-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 30px;
}

.detail-list li {
    color: var(--dark);
    padding: 8px 0;
    font-size: 1.15rem;
    line-height: 1.5;
}

/* Booking button in detail - bigger and centered */
.concept-detail-text .btn-primary {
    align-self: center;
    margin-top: 10px;
    padding: 16px 40px;
    font-size: 1.2rem;
}

/* ===== Variation: Nature concept - greener look ===== */
.concept-detail-nature {
    background: linear-gradient(135deg, #f0f7e8 0%, #d8eac4 100%);
    border-color: var(--green);
    box-shadow: 0 10px 40px rgba(46, 204, 113, 0.15);
}

.concept-detail-nature .detail-block h4 {
    border-bottom-color: var(--green);
}

.concept-detail-nature .concept-detail-age {
    background: var(--green);
}

/* ===== Variation: Mission concept - purple/mystery look ===== */
.concept-detail-mission {
    background: linear-gradient(135deg, #f3e8ff 0%, #e0c8f5 100%);
    border-color: #7e3ff2;
    box-shadow: 0 10px 40px rgba(126, 63, 242, 0.15);
}

.concept-detail-mission .detail-block h4 {
    border-bottom-color: #7e3ff2;
}

.concept-detail-mission .concept-detail-age {
    background: #7e3ff2;
}

.concept-detail-media {
    /* No sticky positioning - allows scrolling with multiple reels */
}

.media-title {
    text-align: center;
    color: var(--royal-blue);
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: 800;
}

/* Reels & flyer grid - no horizontal scroll, all items visible */
.reels-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    padding: 10px 0 20px;
    justify-items: center;
    align-items: start;
}

.reels-stack::-webkit-scrollbar {
    height: 10px;
}

.reels-stack::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.reels-stack::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.reels-stack::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}

.reels-stack blockquote.instagram-media {
    margin: 0 !important;
    width: 100% !important;
    min-width: 280px !important;
    max-width: 360px !important;
}

/* ========== Gallery ========== */
.gallery {
    margin-top: 40px;
}

.gallery-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--royal-blue);
    margin-bottom: 25px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 16/10;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item.is-video::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(245, 130, 32, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    pointer-events: none;
}

.gallery-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: rgba(26, 58, 143, 0.05);
    border-radius: var(--radius);
    border: 2px dashed rgba(26, 58, 143, 0.2);
}

.gallery-placeholder span {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.gallery-placeholder p {
    color: var(--gray);
    font-size: 1rem;
}

/* ========== Testimonials ========== */
.testimonials {
    background: linear-gradient(135deg, #fffbe8 0%, #fff4d1 100%);
    position: relative;
    overflow: hidden;
}

/* Testimonials Instagram grid - no horizontal scroll */
.testimonials-instagram {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    padding: 15px 0 25px;
    justify-items: center;
    align-items: start;
}

.testimonials-instagram::-webkit-scrollbar {
    height: 12px;
}

.testimonials-instagram::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}

.testimonials-instagram::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.testimonials-instagram::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}

.testimonials-instagram blockquote.instagram-media {
    margin: 0 !important;
    width: 100% !important;
    min-width: 280px !important;
    max-width: 360px !important;
}

/* ========== Flyer Lightbox - Click to enlarge ========== */
.flyer-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(8px);
    padding: 30px 20px;
    overflow: auto;
}

.flyer-lightbox.open {
    display: flex;
}

.flyer-lightbox-img {
    max-width: 95vw;
    max-height: 92vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border: 4px solid var(--gold);
    cursor: zoom-out;
}

.flyer-lightbox-close {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    border: 3px solid var(--white);
    font-size: 30px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    z-index: 100000;
    transition: transform 0.3s ease;
    padding: 0;
}

.flyer-lightbox-close:hover {
    transform: scale(1.1) rotate(90deg);
}

/* Zoom hint badge on flyers */
.concept-flyer-in-scroll, .show-flyer-card {
    position: relative;
}

.concept-flyer-in-scroll::before, .show-flyer-card::before {
    content: '🔍 הגדל';
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    pointer-events: none;
    z-index: 2;
    opacity: 0.9;
}

/* Carousel wrapper with arrow buttons */
.carousel-wrapper {
    position: relative;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: var(--white);
    border: 3px solid var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    z-index: 5;
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    padding: 0;
}

.carousel-arrow:hover {
    transform: translateY(-50%) scale(1.12);
}

.carousel-arrow.carousel-arrow-next {
    left: 15px;
}

.carousel-arrow.carousel-arrow-prev {
    right: 15px;
}

.carousel-arrow.disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 640px) {
    .carousel-arrow {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
    .carousel-arrow.carousel-arrow-next { left: 8px; }
    .carousel-arrow.carousel-arrow-prev { right: 8px; }
}

/* Swipe hint label */
.swipe-hint {
    text-align: center;
    color: var(--royal-blue);
    font-size: 1rem;
    font-weight: 600;
    margin: -10px 0 25px;
    opacity: 0.75;
}

.swipe-hint::before {
    content: '👈';
    margin-left: 8px;
    display: inline-block;
    animation: swipe-arrow 1.5s ease-in-out infinite;
}

@keyframes swipe-arrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

@media (max-width: 640px) {
    .testimonials-instagram blockquote.instagram-media {
        width: 320px !important;
        min-width: 320px !important;
        max-width: 320px !important;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(26, 58, 143, 0.08);
    border: 2px solid transparent;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26, 58, 143, 0.15);
    border-color: var(--gold);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 5rem;
    color: var(--orange);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--dark);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(26, 58, 143, 0.1);
}

.author-name {
    font-weight: 700;
    color: var(--royal-blue);
}

/* Screenshots section */
.testimonials-screenshots {
    margin-bottom: 40px;
}

.screenshots-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--royal-blue);
    margin-bottom: 30px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.screenshot-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    background: var(--white);
    border: 3px solid transparent;
}

.screenshot-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--orange);
    box-shadow: var(--shadow-hover);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-placeholder {
    aspect-ratio: 3/4;
    background: var(--white);
    border: 2px dashed rgba(26, 58, 143, 0.25);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    padding: 20px;
    text-align: center;
}

.screenshot-placeholder span {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.btn-instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: var(--white);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(253, 29, 29, 0.4);
}

/* ========== Education ========== */
.education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.education-text p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 25px;
}

/* ========== Education Video ========== */
.education-video {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(26, 58, 143, 0.2);
    border: 4px solid var(--gold);
    background: #000;
}

.education-video-player {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* ========== Video Placeholder ========== */
.video-placeholder {
    background: rgba(26, 58, 143, 0.05);
    border: 2px dashed rgba(26, 58, 143, 0.2);
    border-radius: var(--radius);
    padding: 60px 20px;
    text-align: center;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-placeholder span {
    font-size: 3rem;
    margin-bottom: 10px;
}

.video-placeholder p {
    color: var(--gray);
}

/* ========== Show Description ========== */
.show-description {
    max-width: 850px;
    margin: 0 auto 35px;
    text-align: center;
    background: linear-gradient(135deg, #f0f4ff, #e8eeff);
    border-radius: 20px;
    padding: 32px 40px;
    border: 3px solid var(--gold);
    box-shadow: 0 8px 25px rgba(26, 58, 143, 0.1);
}

.show-description p {
    color: var(--dark);
    line-height: 1.85;
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.show-description p:last-child {
    margin-bottom: 0;
}

.show-description-props {
    background: var(--white);
    border-radius: 14px;
    padding: 18px 22px;
    border-right: 4px solid var(--orange);
    text-align: right;
    margin-top: 18px;
}

/* Show flyer card in grid - matches reel height */
.show-flyer-card {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 9/16;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    border: 4px solid var(--gold);
    background: var(--white);
}

.show-flyer-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
}

/* YouTube vertical embed in grid - same height as flyer/reels */
.show-youtube-vertical {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 9/16;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background: #000;
    border: 3px solid var(--gold);
    position: relative;
}

@media (max-width: 640px) {
    .show-youtube-vertical {
        width: 320px !important;
        min-width: 320px !important;
        max-width: 320px !important;
        height: 570px;
    }
}

.show-youtube-vertical iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 640px) {
    .show-description {
        padding: 25px 22px;
    }

    .show-description p {
        font-size: 1.05rem;
    }
}

/* ========== YouTube ========== */
.youtube-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 auto 30px;
    max-width: 900px;
}

/* Two videos side by side */
.youtube-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 0 auto 35px;
    max-width: 900px;
}

.youtube-pair .video-embed {
    border: 3px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.youtube-pair .video-embed:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .youtube-pair {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #000;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.podcast-embed iframe {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* ========== Podcast Banner Image ========== */
.podcast-banner {
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(126, 63, 242, 0.25);
    border: 4px solid var(--gold);
}

.podcast-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== Podcast Promise Box - ערך מוסף של הפודקאסט ========== */
.podcast-promise {
    max-width: 800px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, #f8f4ff 0%, #ede4ff 100%);
    border: 3px solid #7e3ff2;
    border-radius: 24px;
    padding: 35px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 35px rgba(126, 63, 242, 0.18);
    overflow: hidden;
}

.podcast-promise::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(126, 63, 242, 0.18), transparent 70%);
    border-radius: 50%;
}

.podcast-promise::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.18), transparent 70%);
    border-radius: 50%;
}

.podcast-promise-icon {
    font-size: 3.5rem;
    margin-bottom: 18px;
    display: inline-block;
    animation: book-rock 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(126, 63, 242, 0.3));
}

@keyframes book-rock {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}

.podcast-promise-text {
    color: var(--dark);
    font-size: 1.2rem;
    line-height: 1.85;
    margin: 0 0 12px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.podcast-promise-text:last-child {
    margin-bottom: 0;
}

.podcast-highlight {
    color: #7e3ff2;
    font-weight: 800;
    background: linear-gradient(180deg, transparent 65%, rgba(245, 197, 24, 0.45) 65%);
    padding: 0 4px;
}

.podcast-promise-text strong {
    color: #5d2dba;
    font-weight: 800;
}

.podcast-heart {
    display: inline-block;
    font-size: 1.3em;
    animation: heart-pulse 1.5s ease-in-out infinite;
}

@media (max-width: 640px) {
    .podcast-promise {
        padding: 28px 22px;
        margin: 0 0 35px;
    }

    .podcast-promise-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .podcast-promise-icon {
        font-size: 2.5rem;
    }
}

/* ========== Podcast ========== */
.podcast-embed {
    max-width: 700px;
    margin: 0 auto 40px;
}

.podcast-links {
    text-align: center;
}

.podcast-links h3 {
    font-size: 1.3rem;
    color: var(--royal-blue);
    margin-bottom: 20px;
}

.podcast-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ========== Values Banner - לפני סקשן ההזמנה ========== */
.values-banner {
    background: linear-gradient(135deg, var(--royal-blue) 0%, #2a4fba 100%);
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

.values-banner::before,
.values-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.3), transparent 70%);
}

.values-banner::before {
    top: -50px;
    right: -30px;
    width: 200px;
    height: 200px;
}

.values-banner::after {
    bottom: -50px;
    left: -30px;
    width: 250px;
    height: 250px;
}

.values-banner-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
    backdrop-filter: blur(8px);
    border: 3px solid var(--gold);
    border-radius: 24px;
    padding: 32px 40px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25), inset 0 0 30px rgba(245, 197, 24, 0.15);
    position: relative;
    z-index: 1;
}

.values-banner-content p {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.7;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.values-heart {
    display: inline-block;
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: heart-beat 1.6s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(255, 100, 150, 0.6));
}

.heart-red {
    display: inline-block;
    animation: heart-pulse 1.3s ease-in-out infinite;
}

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.15); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
}

@keyframes heart-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}

@media (max-width: 640px) {
    .values-banner {
        padding: 35px 15px;
    }

    .values-banner-content {
        padding: 24px 22px;
    }

    .values-banner-content p {
        font-size: 1.1rem;
    }

    .values-heart {
        font-size: 2rem;
    }
}

/* ========== Booking Form ========== */
.booking {
    background: linear-gradient(135deg, #fff9e6 0%, #fff4d1 50%, #ffeab8 100%);
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.3), transparent);
    border-radius: 50%;
}

.booking::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(245, 130, 32, 0.2), transparent);
    border-radius: 50%;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 45px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(26, 58, 143, 0.15);
    border: 3px solid var(--gold);
    position: relative;
    z-index: 1;
}

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

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

.form-group-full {
    margin-bottom: 25px;
}

.form-group label {
    font-weight: 700;
    color: var(--royal-blue);
    margin-bottom: 8px;
    font-size: 1rem;
}

.required {
    color: var(--orange);
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e0e6f5;
    border-radius: 12px;
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    direction: rtl;
    background: var(--off-white);
    color: var(--dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aab3c5;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    font-family: 'Rubik', sans-serif;
}

.form-submit {
    text-align: center;
    margin-top: 10px;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #25D366, #1ebe5a);
}

.btn-large:hover {
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.form-note {
    text-align: center;
    margin-top: 18px;
    color: var(--gray);
    font-size: 0.9rem;
}

/* ========== Contact ========== */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========== CTA ========== */
.cta-container {
    text-align: center;
    margin-top: 40px;
}

/* ========== Footer ========== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--white);
}

.social-link:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ========== Floating Booking Button - bottom-LEFT ========== */
.booking-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: var(--white);
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 6px 20px rgba(245, 130, 32, 0.5);
    z-index: 999;
    animation: booking-pulse 2.5s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-float:hover {
    transform: scale(1.08);
    animation: none;
    box-shadow: 0 10px 30px rgba(245, 130, 32, 0.6);
}

.booking-float svg {
    color: var(--white);
}

@keyframes booking-pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(245, 130, 32, 0.5), 0 0 0 0 rgba(245, 197, 24, 0.5); }
    50% { box-shadow: 0 6px 20px rgba(245, 130, 32, 0.5), 0 0 0 12px rgba(245, 197, 24, 0); }
}

/* ========== Music Player - Small TOP-RIGHT ========== */
.music-toggle {
    position: fixed;
    top: 90px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--white);
    border: 2px solid var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(245, 197, 24, 0.55);
    z-index: 999;
    transition: transform 0.3s ease;
}

.music-toggle:hover {
    transform: scale(1.12);
}

.music-toggle.playing {
    animation: music-pulse 1.5s ease-in-out infinite;
}

@keyframes music-pulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(245, 197, 24, 0.55), 0 0 0 0 rgba(245, 197, 24, 0.5); }
    50% { box-shadow: 0 4px 14px rgba(245, 197, 24, 0.55), 0 0 0 10px rgba(245, 197, 24, 0); }
}

/* Music Modal Popup */
.music-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.music-modal.open {
    display: flex;
}

.music-modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: 16px;
    max-width: 360px;
    width: 92%;
    position: relative;
    border: 4px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.music-modal-close {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    border: 3px solid var(--white);
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 10;
    transition: transform 0.3s ease;
}

.music-modal-close:hover {
    transform: scale(1.1) rotate(90deg);
}

.music-modal-title {
    text-align: center;
    color: var(--royal-blue);
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 12px;
}

@media (max-width: 640px) {
    .music-toggle {
        top: 78px;
        right: 14px;
        width: 38px;
        height: 38px;
    }

    .music-toggle svg {
        width: 18px;
        height: 18px;
    }
}

/* ========== Floating Phone Button ========== */
.phone-float {
    position: fixed;
    bottom: 100px;
    left: 25px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--royal-blue), #3a5fcf);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(26, 58, 143, 0.5);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: phone-ring 3s ease-in-out infinite;
}

.phone-float:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 10px 30px rgba(26, 58, 143, 0.6);
    animation: none;
}

@keyframes phone-ring {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(-12deg); }
    20%, 40% { transform: rotate(12deg); }
    50% { transform: rotate(0); }
}

/* ========== Floating WhatsApp Button - bottom-RIGHT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    animation: whatsapp-pulse 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* ========== Lightbox ========== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2.5rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--orange);
    transform: scale(1.2);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
}

#lightboxVideo {
    display: none;
}

/* ========== Scroll Animations ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--royal-blue);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 5px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 12px 16px;
    }

    .hero {
        min-height: auto;
        padding: 95px 16px 50px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        padding: 0 5px;
    }

    .hero-logo {
        width: 130px;
        height: 130px;
    }

    .hero-poster {
        max-width: 320px;
        margin-bottom: 22px;
    }

    .section {
        padding: 50px 0;
    }

    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 1.75rem;
        padding: 0 5px;
    }

    .section-desc {
        font-size: 1.05rem;
        padding: 0 5px;
    }

    /* Concept card mobile fix */
    .concept-cards-grid {
        gap: 20px;
    }

    .concept-card-new {
        padding: 30px 22px 26px;
    }

    .concept-card-icon {
        font-size: 4.2rem;
    }

    .concept-card-new h3 {
        font-size: 1.5rem;
    }

    .concept-card-new p {
        font-size: 1rem;
        min-height: auto;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        text-align: center;
    }

    .about-image img {
        max-width: 280px;
        margin: 0 auto;
    }

    .concepts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .concept-detail {
        padding: 30px 20px;
        margin: 40px 0 30px;
    }

    .concept-detail-header h3 {
        font-size: 1.7rem;
    }

    .concept-detail-subtitle {
        font-size: 1.1rem;
    }

    .concept-detail-grid {
        gap: 30px;
    }

    .concept-detail-text {
        gap: 25px;
    }

    .detail-block h4 {
        font-size: 1.3rem;
    }

    .detail-block p {
        font-size: 1.05rem;
    }

    .detail-list {
        grid-template-columns: 1fr;
        gap: 8px 0;
    }

    .detail-list li {
        font-size: 1rem;
    }

    .reels-stack blockquote.instagram-media {
        width: 320px !important;
        min-width: 320px !important;
        max-width: 320px !important;
    }

    .education-grid {
        grid-template-columns: 1fr;
    }

    .youtube-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .podcast-buttons {
        flex-direction: column;
        align-items: center;
    }

    .booking-form {
        padding: 30px 20px;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 28px 22px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .booking-float {
        padding: 11px 16px;
        font-size: 0.9rem;
        bottom: 15px;
        left: 15px;
    }

    .booking-float svg {
        width: 18px;
        height: 18px;
    }
}

/* ========== Accessibility: 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;
    }

    .hero-logo,
    .whatsapp-float {
        animation: none;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}
