@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: Heebo;
    src: url("../fonts/Heebo-Regular.ttf");
    font-display: swap;
}

@font-face {
    font-family: Heebo;
    src: url("../fonts/Heebo-Bold.ttf");
    font-display: swap;
    font-weight: bold;
}

:root {
    --bg: #ffffff; /* רקע לבן */
    --surface: #f6f8fb; /* משטח רך */
    --border: #e5e7eb; /* קווי מתאר */
    --prim: #2563eb; /* כחול */
    --prim-2: #38bdf8; /* תכלת */
    --text: #0f172a; /* טקסט כהה */
    --muted: #475569; /* טקסט משני */
    --ok: #10b981; /* ירוק */
    --warn: #f59e0b; /* כתום */
    --danger: #ef4444; /* אדום */
    --container: 1200px;
    --radius: 18px;
    --shadow: 0 10px 24px rgba(15, 23, 42, .06);
}

* {
    box-sizing: border-box;
}

/* START WHATSAPP */

.whatsapp_btn {
    position: fixed;
    height: 54px;
    width: 54px;
    right: 5px;
    bottom: 5px;
    z-index: 10000000000000;
}

.whatsapp_btn img {
    height: 54px;
    width: 54px;
}

/* END WHATSAPP */


* {
    box-sizing: border-box;
    font-family: "Heebo", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu;
}

html, body {
    height: 100%
}

body {
    margin: 0;
    line-height: 1.6;
    background: var(--bg);
    color: var(--text);
    padding-top: 80px;
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 12px
}

main {
    background-color: white;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
    padding-top: 40px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1.15rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--prim), var(--prim-2));
    color: #fff;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform .2s ease, filter .2s ease
}

.btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.05)
}

.btn.ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: white;
    font-weight: 700
}

.tag {
    display: inline-block;
    padding: .35rem .65rem;
    border-radius: 999px;
    background: #eaf2ff;
    border: 1px solid #dbeafe;
    color: #1e40af;
    font-weight: 700;
    font-size: .85rem
}

.link {
    color: var(--prim);
    text-decoration: underline;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem .75rem;
    border-radius: 999px;
    background: #edf8ff;
    border: 1px solid #dbeafe;
    color: #0f172a;
    font-weight: 600;
    font-size: .8rem
}

.grid {
    display: grid;
    gap: 24px
}

.grid-2 {
    grid-template-columns:1fr
}

.grid-3 {
    grid-template-columns:1fr
}

@media (min-width: 860px) {
    .grid-2 {
        grid-template-columns:1.1fr .9fr
    }

    .grid-3 {
        grid-template-columns:repeat(3, 1fr)
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    width: 100%;

}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0
}

.brand {
    display: flex;
    align-items: center;
    gap: .75rem
}

.logo {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    /*background: linear-gradient(135deg, #e0e7ff, #bae6fd);*/
    /*box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .04)*/
}

.logo span {
    font-weight: 800;
    font-size: 1.05rem;
    color: #1e3a8a
}

.brand h1 {
    font-size: 1.1rem;
    margin: 0
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 14px
}

nav ul li {
    display: flex;
    align-items: center;
}

nav a {
    padding: .55rem .8rem;
    border-radius: 10px;
    color: #0f172a
}

nav a:hover {
    background: #eff6ff
}

.mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    color: #1e293b
}

@media (min-width: 980px) {
    .mobile-toggle {
        display: none
    }
}

.mobile-menu {
    display: none;
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: absolute;
    z-index: 222;
    width: 90%;
    top: 72px;
    left: 5%;
}

.mobile-menu.open {
    display: block
}

.mobile-menu nav ul {
    flex-direction: column;
}

.mobile-menu nav ul li {
    justify-content: center;
}

/* Hero / Slider */
.hero {
    position: relative;
    padding: 0
}

.slider {
    position: relative;
    overflow: hidden;
    background: #000
}

.slides {
    display: flex;
    transition: transform .6s ease;
}

.slide {
    min-width: 100%;
    height: 58vh;
    position: relative
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .45))
}

.slider-content {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    padding: 24px;
    z-index: 1;
}

.slider-text {
    max-width: 900px
}

.slider-text h2 {
    font-size: clamp(28px, 5vw, 48px);
    margin: .2rem 0
}

.slider-text p {
    font-size: 1.05rem;
    color: #e2e8f0
}

.controls {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px
}

.arrow {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .85);
    border: 1px solid var(--border);
    cursor: pointer
}

.dots {
    position: absolute;
    inset-inline: 0;
    bottom: 12px;
    display: flex;
    gap: 8px;
    justify-content: center
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffffff88;
    border: 1px solid #ffffffcc
}

.dot.active {
    background: #fff
}

/* Sections */
section {
    padding: 56px 0
}

.section-title {
    margin: 0 0 6px;
    font-size: clamp(22px, 3.8vw, 36px)
}

.section-sub {
    margin: 0 0 24px;
    color: var(--muted)
}

/* Cards */
.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: var(--shadow)
}

.card:hover {
    transform: translateY(-4px)
}

.card h3 {
    margin: .2rem 0 .35rem;
    font-size: 1.2rem
}

.card p {
    margin: 0;
    color: #1f2937
}

.card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 10px
}

#projects .card {

}

#projects .card:hover {
    border: 1px solid blue;
}

/* List */
.check {
    display: flex;
    gap: .6rem;
    align-items: flex-start
}

/* Timeline */
.timeline {
    position: relative
}

.timeline:before {
    content: "";
    position: absolute;
    inset-inline-start: 16px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: linear-gradient(var(--prim), transparent);
    right: 14px;
}

.step {
    display: grid;
    grid-template-columns:40px 1fr;
    gap: 14px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.step .num {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #1e40af
}

/* FAQ */
details {
    background: #fff;
    border: 1px solid var(--border);
    padding: 16px;
    border-radius: 14px;
    box-shadow: var(--shadow)
}

details + details {
    margin-top: 12px
}

summary {
    cursor: pointer;
    font-weight: 700
}

/* Contact */
form {
    display: grid;
    gap: 14px
}

.row {
    display: grid;
    grid-template-columns:1fr;
    gap: 14px
}

@media (min-width: 720px) {
    .row {
        grid-template-columns:1fr 1fr
    }
}

input, textarea, select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    color: #0f172a;
    outline: none
}

textarea {
    min-height: 120px;
    resize: vertical
}

.contact-card {
    display: grid;
    gap: 14px
}

/* Footer */
footer {
    padding: 36px 0;
    border-top: 1px solid var(--border);
    color: #334155;
    background: var(--surface)
}

.foot-grid {
    display: grid;
    gap: 18px;
    grid-template-columns:1fr
}

@media (min-width: 860px) {
    .foot-grid {
        grid-template-columns:2fr 1fr 1fr
    }
}

.foot-title {
    font-weight: 800;
    margin-bottom: .5rem;
    color: #0f172a
}

/* Reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .6s ease, transform .6s ease
}

[data-reveal].visible {
    opacity: 1;
    transform: none
}

.swiper {
    width: 100%;
    aspect-ratio: 16/14;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0; /* = top:0; right:0; bottom:0; left:0 */
    background: rgba(0, 0, 0, 0.5); /* שקיפות 50% */
    z-index: 1;
}

@media (min-width: 480px) {

}

@media (min-width: 600px) {

}

@media (min-width: 768px) {
    .swiper {
        aspect-ratio: 16/6;
    }
}

@media (min-width: 992px) {

}

@media (min-width: 1200px) {

}
