/* ===== Design tokens ===== */
:root {
    --cream: #fbf3e6;
    --cream-alt: #f4e6d2;
    --cream-deep: #ecd9bb;
    --ink: #2a2145;
    --ink-soft: #443a68;
    --marigold: #e29a2e;
    --marigold-deep: #c97f1c;
    --fuchsia: #c93868;
    --fuchsia-deep: #a82753;
    --teal: #2f8f86;
    --gold: #c9a227;
    --white: #ffffff;

    --font-display: 'Rubik', 'Segoe UI', sans-serif;
    --font-body: 'Heebo', 'Segoe UI', sans-serif;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-round: 999px;

    --shadow-soft: 0 10px 30px -12px rgba(42, 33, 69, 0.25);
    --shadow-card: 0 14px 40px -16px rgba(42, 33, 69, 0.3);

    --container-max: 1180px;
    --section-pad: clamp(3.5rem, 7vw, 6.5rem);
}

/* ===== Reset ===== */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    -webkit-user-select: none;
    user-select: none;
}
input, textarea, select {
    -webkit-user-select: text;
    user-select: text;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 0.6em; color: var(--ink); line-height: 1.25; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.4rem, 5vw, 2.5rem);
}

section { padding: var(--section-pad) 0; position: relative; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: var(--fuchsia-deep);
    background: rgba(201, 56, 104, 0.1);
    padding: 0.35em 1em;
    border-radius: var(--radius-round);
    margin-bottom: 1em;
}

h2.section-title {
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    font-weight: 700;
}

.section-lead {
    font-size: 1.1rem;
    color: var(--ink-soft);
    max-width: 640px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

.gold-rule {
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--marigold));
    border-radius: var(--radius-round);
    margin: 0.4em 0 1.4em;
}
.center .gold-rule { margin-inline: auto; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.95em 1.9em;
    border-radius: var(--radius-round);
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    max-width: 100%;
    text-align: center;
    white-space: normal;
}
@media (max-width: 420px) {
    .btn { padding: 0.85em 1.3em; font-size: 0.93rem; }
}
.btn:active { transform: scale(0.97); }

.btn-primary {
    background: linear-gradient(135deg, var(--marigold), var(--fuchsia));
    color: var(--white);
    box-shadow: 0 12px 24px -10px rgba(201, 56, 104, 0.55);
}
.btn-primary:hover { box-shadow: 0 16px 30px -10px rgba(201, 56, 104, 0.65); transform: translateY(-2px); }

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-light {
    background: var(--white);
    color: var(--ink);
}

.btn-block { width: 100%; }
.btn-sm { padding: 0.6em 1.3em; font-size: 0.9rem; }

/* ===== Header ===== */
.site-header {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 500;
    background: rgba(251, 243, 230, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(42, 33, 69, 0.08);
    transition: padding 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -16px rgba(42,33,69,0.4); }
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 1.1rem;
    transition: padding 0.25s ease;
}
.site-header.is-scrolled .container { padding-block: 0.65rem; }

.brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.brand span { color: var(--fuchsia-deep); }

.header-actions { display: flex; align-items: center; gap: 0.7rem; }
.header-cta { display: none; }
@media (min-width: 720px) {
    .header-cta { display: inline-flex; }
}

.menu-toggle {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border: none;
    position: relative;
}
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-burger { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    border-top: 1px solid rgba(42,33,69,0.08);
    transition: max-height 0.3s ease;
}
.mobile-nav.is-open { max-height: 480px; }
.mobile-nav a {
    padding: 0.95rem clamp(1.4rem, 5vw, 2.5rem);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--ink);
    border-bottom: 1px solid rgba(42,33,69,0.06);
}
.mobile-nav a:hover { color: var(--fuchsia-deep); background: var(--cream); }
.mobile-nav a:last-child { border-bottom: none; color: var(--fuchsia-deep); }

/* ===== Hero ===== */
.hero {
    position: relative;
    color: var(--white);
    background: var(--ink);
    padding-top: 4.4rem;
}
.hero-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--ink);
}
.hero-media-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../images/hero/hero-main-tiny.jpg');
    background-size: cover;
    background-position: center 30%;
    filter: blur(50px) brightness(0.5) saturate(1.2);
    transform: scale(1.2);
}
.hero-media-inner {
    position: relative;
    z-index: 1;
    max-width: 1408px;
    margin-inline: auto;
}
.hero-media img {
    width: 100%; height: auto; display: block;
}
.hero-content {
    position: relative;
    z-index: 1;
    padding-block: clamp(2rem, 6vw, 3.2rem) clamp(2.6rem, 6vw, 4rem);
    max-width: 720px;
    margin-inline: auto;
}
@media (max-width: 719px) {
    .hero-content { max-width: none; }
}
.hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    background: rgba(42,33,69,0.55);
    border: 1px solid rgba(226,154,46, .6);
    color: var(--white);
    padding: 0.5em 1.1em;
    border-radius: var(--radius-round);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.2em;
    z-index: 1;
    transition: transform 0.25s ease;
}
.hero-badge::before {
    content: '';
    position: absolute;
    inset: -8px;
    z-index: -1;
    border-radius: var(--radius-round);
    background: radial-gradient(ellipse at center, rgba(226,154,46, .55) 0%, rgba(226,154,46, 0) 72%);
    filter: blur(6px);
    opacity: 0.85;
    transition: opacity 0.25s ease;
}
.hero-badge:hover {
    transform: translateY(-1px);
}
.hero-badge:hover::before { opacity: 1; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--marigold); box-shadow: 0 0 0 0 rgba(226,154,46, .7); animation: pulse-dot 2s infinite; }
.hero h1 {
    color: var(--white);
    font-size: clamp(1.65rem, 6vw, 3.1rem);
    font-weight: 800;
}
.hero-subtitle {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.05rem, 2.4vw, 1.35rem);
    color: var(--marigold);
    margin: 0.3em 0 0.7em;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin-bottom: 1.6em;
    line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-scroll-cue {
    display: none;
}
@media (min-width: 720px) {
    .hero-scroll-cue {
        display: flex;
        position: absolute;
        bottom: 0.6rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        color: rgba(255,255,255,0.7);
        font-size: 0.78rem;
        flex-direction: column; align-items: center; gap: 0.4rem;
    }
}
.hero-scroll-cue .chev { width: 18px; height: 18px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(-45deg); animation: bob 1.8s ease-in-out infinite; }

/* ===== About ===== */
/* ===== ברוכה הבאה ===== */
.welcome-section { background: var(--cream-alt); }
.welcome-inner { max-width: 720px; margin-inline: auto; text-align: center; }
.welcome-inner h2.section-title { font-size: clamp(1.5rem, 3.4vw, 2.1rem); }
.welcome-inner p { color: var(--ink-soft); font-size: 1.08rem; }

.about-section { background: var(--white); }
.about-grid {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
@media (min-width: 860px) {
    .about-grid { grid-template-columns: 0.85fr 1.15fr; }
}
.about-photo-wrap { position: relative; }
.about-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    aspect-ratio: 4/4.6;
    background:
        radial-gradient(circle at 50% 28%, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 55%),
        linear-gradient(150deg, var(--marigold) 0%, var(--fuchsia) 55%, var(--fuchsia-deep) 100%);
    border: 7px solid var(--white);
    outline: 3px solid var(--gold);
    outline-offset: -3px;
}
.about-photo img { width: 100%; height: 100%; object-fit: contain; object-position: bottom; padding-top: 6%; }
.about-stat-badge {
    position: absolute;
    bottom: -1rem;
    inset-inline-start: 0.6rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 0.8rem 1.1rem;
    text-align: center;
    min-width: 100px;
}
@media (min-width: 480px) {
    .about-stat-badge {
        bottom: -1.4rem;
        inset-inline-start: -1.2rem;
        padding: 1rem 1.3rem;
        min-width: 120px;
    }
}
.about-stat-badge strong { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--fuchsia-deep); }
.about-stat-badge span { font-size: 0.78rem; color: var(--ink-soft); }
.about-text .eyebrow { font-family: 'Dana Yad', var(--font-display); font-size: 1.05rem; font-weight: 700; }
.about-text h2.section-title { font-family: 'Dana Yad', var(--font-display); font-size: clamp(2rem, 4.5vw, 2.9rem); font-weight: 700; }
.about-text p { font-family: 'Dana Yad', var(--font-body); color: var(--ink-soft); font-size: 1.35rem; line-height: 1.85; font-weight: 700; }
.about-text .about-signature { font-family: 'Dana Yad', var(--font-display); font-size: 2.1rem; color: var(--fuchsia-deep); margin-top: 0.8em; font-weight: 700; }

/* ===== Value props ===== */
.values-section { background: var(--cream-alt); }
.values-subheading {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 0;
}
.values-grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
}
@media (min-width: 560px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .values-grid { grid-template-columns: repeat(3, 1fr); }
}
.value-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.9rem 1.6rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.value-icon {
    width: 52px; height: 52px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--marigold), var(--fuchsia));
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}
.value-card h3 { font-size: 1.08rem; margin-bottom: 0.4em; }
.value-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ===== Trips ===== */
.trip-hero-card {
    display: grid;
    background: var(--ink);
    color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-top: 2.5rem;
}
@media (min-width: 840px) {
    .trip-hero-card { grid-template-columns: 1.05fr 0.95fr; }
}
.trip-hero-media {
    position: relative;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}
.trip-hero-media img { width: 100%; height: auto; display: block; }
.trip-hero-body { padding: clamp(1.8rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.4em 0.9em;
    border-radius: var(--radius-round);
    width: fit-content;
    margin-bottom: 1em;
}
.status-open { background: rgba(47, 143, 134, 0.18); color: #6bd6c7; }
.status-almost_full { background: rgba(226, 154, 46, 0.2); color: var(--marigold); }
.status-full { background: rgba(201, 56, 104, 0.22); color: #ef7fa2; }
.status-finished { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); }
.trip-hero-body h3 { color: var(--white); font-size: clamp(1.4rem, 3vw, 1.9rem); }
.trip-dates { color: var(--marigold); font-family: var(--font-display); font-weight: 600; margin-bottom: 0.6em; }
.trip-hero-body p { color: rgba(255,255,255,0.82); }
.trip-hero-body .trip-hero-tagline { font-style: italic; color: var(--gold-light, #e8cf8e); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1em; }
.trip-hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1rem; }

.trip-details { margin: 0.8rem 0 0.4rem; }
.trip-details summary {
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--marigold);
    font-size: 0.95rem;
}
.trip-full-description { margin-top: 0.9rem; color: rgba(255,255,255,0.85); font-size: 0.93rem; }
.trip-full-description h3, .trip-full-description h4 { color: var(--white); font-size: 1.05rem; margin: 0.8em 0 0.4em; }
.trip-full-description ul, .trip-full-description ol { padding-inline-start: 1.3em; margin: 0.6em 0; }
.trip-full-description li { margin-bottom: 0.35em; list-style: disc; }
.trip-full-description p { margin: 0 0 0.7em; }

.trips-secondary-grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 1.4rem;
}
.trip-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}
.trip-card-media { aspect-ratio: 4/3; overflow: hidden; }
.trip-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.trip-card:hover .trip-card-media img { transform: scale(1.06); }
.trip-card-body { padding: 1.3rem 1.4rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.trip-card-body h4 { font-size: 1.05rem; margin-bottom: 0.3em; }
.trip-card-dates { font-size: 0.85rem; color: var(--fuchsia-deep); font-weight: 600; margin-bottom: 0.5em; }
.trip-card-body p { color: var(--ink-soft); font-size: 0.92rem; flex: 1; }

.trip-placeholder {
    margin-top: 2.5rem;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(2.2rem, 6vw, 3.5rem);
    box-shadow: var(--shadow-soft);
}
.trip-placeholder h3 { font-size: 1.3rem; }
.trip-placeholder p { color: var(--ink-soft); max-width: 460px; margin-inline: auto; }

/* ===== רגעים שנחווה יחד ===== */
.moments-section { background: var(--white); }
.moments-grid {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.1rem;
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
}
@media (min-width: 640px) {
    .moments-grid { grid-template-columns: repeat(2, 1fr); }
}
.moment-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.3rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-soft);
}
.moment-emoji { font-size: 1.5rem; flex-shrink: 0; }
.moment-text { display: flex; flex-direction: column; }
.moment-text strong { font-weight: 700; }
.moment-text .moment-desc { font-weight: 400; font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.15em; }

/* ===== Gallery ===== */
.gallery-scroll {
    margin-top: 2.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    direction: ltr;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-track {
    display: flex;
    width: max-content;
    gap: 0.9rem;
}
.gallery-item {
    flex: 0 0 auto;
    width: 190px;
    aspect-ratio: 3/4;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    box-shadow: var(--shadow-soft);
}
@media (min-width: 720px) { .gallery-item { width: 260px; } }
.gallery-item picture, .gallery-item img { width: 100%; height: 100%; display: block; transition: transform 0.4s ease; }
.gallery-item img { object-fit: cover; }
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(42,33,69,0.55) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.gallery-item:hover::after { opacity: 1; }

.lightbox {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(20, 14, 30, 0.94);
    display: none;
    align-items: center; justify-content: center;
    padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img { width: auto; height: auto; max-width: min(94vw, 1100px); max-height: 86vh; border-radius: var(--radius-sm); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
@media (min-width: 720px) {
    .lightbox img { min-width: min(60vw, 720px); }
}
.lightbox-close, .lightbox-nav {
    position: absolute;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.lightbox-close { top: 1.4rem; inset-inline-end: 1.4rem; }
.lightbox-prev { inset-inline-start: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { inset-inline-end: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ===== Testimonials ===== */
.testimonials-section { background: var(--ink); color: var(--white); }
.testimonials-section h2.section-title { color: var(--white); }
.testimonials-section .eyebrow { background: rgba(255,255,255,0.16); color: var(--white); }
.testimonials-section .section-lead { color: rgba(255,255,255,0.75); }
.testimonial-track-wrap { position: relative; margin-top: 2.5rem; }
.testimonial-track {
    display: flex;
    align-items: flex-start;
    gap: 1.3rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: min(85vw, 320px);
    display: flex;
    flex-direction: column;
    background: var(--cream);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 1.8rem 1.6rem 1.6rem;
    box-shadow: var(--shadow-card);
    text-align: center;
}
.testimonial-quote-mark {
    display: block;
    flex: 0 0 auto;
    font-family: Georgia, serif;
    font-size: 3.4rem;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 0.2em;
}
.testimonial-quote-clip {
    position: relative;
    flex: 0 0 auto;
    height: 168px;
    overflow: hidden;
}
.testimonial-quote-clip::after {
    content: '';
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 46px;
    background: linear-gradient(180deg, rgba(251,243,230,0) 0%, rgba(251,243,230,0.97) 80%);
    pointer-events: none;
}
.testimonial-quote-text {
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
}
.testimonial-expand-slot {
    flex: 0 0 auto;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-expand-btn {
    background: none;
    border: 1.5px solid var(--fuchsia-deep);
    color: var(--fuchsia-deep);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.4em 1.1em;
    border-radius: var(--radius-round);
    transition: background 0.2s ease, color 0.2s ease;
}
.testimonial-expand-btn:hover { background: var(--fuchsia-deep); color: var(--white); }
.testimonial-name {
    display: block;
    flex: 0 0 auto;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--fuchsia-deep);
    font-size: 0.95rem;
    margin-top: 0.4em;
}

/* ===== מודאל המלצה מלאה ===== */
.quote-modal {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(20, 14, 30, 0.94);
    display: none;
    align-items: center; justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}
.quote-modal.is-open { display: flex; }
.quote-modal-box {
    position: relative;
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem 2.2rem;
    max-width: min(94vw, 560px);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    margin: auto;
}
.quote-modal-box .testimonial-quote-text { font-size: 1.05rem; }
.quote-modal-close {
    position: absolute;
    top: 1rem; inset-inline-end: 1rem;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(42,33,69,0.08);
    color: var(--ink);
    border: none;
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
}
.quote-modal-close:hover { background: rgba(42,33,69,0.16); }

.testimonial-controls-desktop { display: none; }
@media (min-width: 900px) {
    .testimonial-controls-desktop {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    .testimonial-controls-desktop button {
        display: inline-flex;
        align-items: center;
        gap: 0.5em;
        padding: 0.75em 1.6em;
        border-radius: var(--radius-round);
        background: rgba(255,255,255,0.08);
        border: 1.5px solid rgba(255,255,255,0.3);
        color: var(--white);
        font-family: var(--font-display);
        font-weight: 600;
        font-size: 0.92rem;
        transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    }
    .testimonial-controls-desktop button:hover {
        background: linear-gradient(135deg, var(--marigold), var(--fuchsia));
        border-color: transparent;
        transform: translateY(-2px);
    }
    .testimonial-controls-desktop button:active { transform: scale(0.96); }
}

/* ===== How it works ===== */
.steps-grid {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.step-card { position: relative; padding-inline-start: 0.2rem; }
.step-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.4rem;
    background: linear-gradient(135deg, var(--marigold), var(--fuchsia));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.2em;
}
.step-card h3 { font-size: 1.05rem; }
.step-card p { color: var(--ink-soft); font-size: 0.93rem; }

/* ===== FAQ ===== */
.faq-section { background: var(--white); }
.faq-list { margin-top: 2rem; max-width: 780px; margin-inline: auto; }
.faq-item {
    border-bottom: 1px solid rgba(42,33,69,0.12);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: start;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.3rem 0.2rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--ink);
}
.faq-plus { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--fuchsia-deep); color: var(--fuchsia-deep); display: flex; align-items: center; justify-content: center; transition: transform 0.25s ease; font-size: 1rem; }
.faq-item.is-open .faq-plus { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer p { color: var(--ink-soft); padding-bottom: 1.3rem; padding-inline-end: 2rem; margin: 0; }

/* ===== Closing CTA + contact form ===== */
.closing-section {
    background: linear-gradient(160deg, var(--fuchsia) 0%, var(--fuchsia-deep) 55%, var(--ink) 130%);
    color: var(--white);
}
.closing-grid {
    display: grid;
    gap: 2.5rem;
    margin-top: 2rem;
}
@media (min-width: 900px) {
    .closing-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}
.closing-section h2 { color: var(--white); }
.closing-section .section-lead { color: rgba(255,255,255,0.85); }
.closing-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.5rem; }

.contact-form {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(1.6rem, 4vw, 2.4rem);
    box-shadow: var(--shadow-card);
    color: var(--ink);
}
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4em; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    border: 1.5px solid rgba(42,33,69,0.15);
    border-radius: var(--radius-sm);
    padding: 0.8em 1em;
    background: var(--cream);
    color: var(--ink);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--fuchsia);
}
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.8rem; }
.form-success, .form-error {
    border-radius: var(--radius-sm);
    padding: 0.9em 1.1em;
    font-size: 0.92rem;
    margin-bottom: 1.1rem;
}
.form-success { background: rgba(47,143,134,0.14); color: #1f6259; }
.form-error { background: rgba(201,56,104,0.12); color: var(--fuchsia-deep); }
.honeypot-field {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== Footer ===== */
.site-footer {
    background: #1c1533;
    color: rgba(255,255,255,0.78);
    padding: 3.5rem 0 6.5rem;
    font-size: 0.92rem;
    text-align: center;
}
@media (min-width: 720px) { .site-footer { padding-bottom: 3.5rem; } }
.footer-grid {
    display: grid;
    gap: 2.4rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 2rem;
}
.footer-brand { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); margin-bottom: 0.5em; }
.footer-col h5 { color: var(--white); font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 0.8em; }
.footer-col a, .footer-col p { color: rgba(255,255,255,0.72); display: block; margin-bottom: 0.55em; }
.footer-social { display: flex; justify-content: center; gap: 0.7rem; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }

/* ===== Floating buttons ===== */
.floating-actions {
    position: fixed;
    bottom: 1.3rem;
    inset-inline-end: 1.1rem;
    z-index: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}
.fab {
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 14px 30px -8px rgba(42,33,69,0.5);
    color: var(--white);
    font-size: 1.6rem;
    border: 2.5px solid rgba(255,255,255,0.85);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fab:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 18px 36px -8px rgba(42,33,69,0.6); }
.fab:active { transform: scale(0.94); }
.fab-whatsapp { background: linear-gradient(135deg, #34e07a, #1fa855); position: relative; }
.fab-whatsapp .ping {
    position: absolute; inset: 0; border-radius: 50%;
    background: #25d366;
    animation: pulse-ring 2.4s cubic-bezier(0.2, 0.7, 0.4, 1) infinite;
}
.fab-call { background: linear-gradient(135deg, var(--marigold), var(--fuchsia)); position: relative; }
.ping-call {
    position: absolute; inset: 0; border-radius: 50%;
    background: linear-gradient(135deg, var(--marigold), var(--fuchsia));
    animation: pulse-ring 2.4s cubic-bezier(0.2, 0.7, 0.4, 1) infinite;
    animation-delay: 0.6s;
}

.scroll-top-btn {
    position: fixed;
    bottom: 1.3rem;
    inset-inline-start: 1.1rem;
    z-index: 600;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--white);
    color: var(--ink);
    border: 1.5px solid rgba(42,33,69,0.14);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, box-shadow 0.2s ease;
}
.scroll-top-btn.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { box-shadow: 0 18px 36px -8px rgba(42,33,69,0.35); transform: translateY(-3px); }
.scroll-top-btn:active { transform: scale(0.94); }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Animations ===== */
@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(226,154,46, .55); }
    70% { box-shadow: 0 0 0 10px rgba(226,154,46, 0); }
    100% { box-shadow: 0 0 0 0 rgba(226,154,46, 0); }
}
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.55; }
    100% { transform: scale(1.9); opacity: 0; }
}
@keyframes bob {
    0%, 100% { transform: translateY(0) rotate(-45deg); }
    50% { transform: translateY(6px) rotate(-45deg); }
}

/* ===== מרכוז תוכן - בכל רוחבי המסך ===== */
.hero-content { text-align: center; }
.hero-actions { justify-content: center; }

.eyebrow { display: table; margin-inline: auto; }
h2.section-title, .section-lead { text-align: center; }
.gold-rule, .section-lead { margin-inline: auto; }

.trip-hero-body, .trip-card-body { text-align: center; }
.status-pill { margin-inline: auto; }
.trip-full-description { text-align: start; }
.trip-hero-actions { justify-content: center; }

.value-card, .step-card { text-align: center; }
.value-icon { margin-inline: auto; }

.closing-grid > div:first-child { text-align: center; }
.closing-actions { justify-content: center; }

.trip-placeholder { text-align: center; }

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
