﻿:root {
    --c-bg: #ffffff;
    --c-text: #0a1f33;
    --c-muted: #5b6b80;
    --c-primary: #0099c8;
    --c-primary-dark: #006a8e;
    --c-primary-light: #5ec5e0;
    --c-accent: #ffb547;
    --c-accent-dark: #e89a26;
    --c-sand: #fdf8ef;
    --c-deep: #062a44;
    --grad-hero: linear-gradient(135deg, #0099c8 0%, #00d4b8 50%, #5ec5e0 100%);
    --grad-deep: linear-gradient(135deg, #062a44 0%, #0d4a73 100%);
    --grad-warm: linear-gradient(135deg, #ffb547 0%, #ff8a3d 100%);
    --shadow-sm: 0 4px 12px rgba(6, 42, 68, 0.08);
    --shadow-md: 0 12px 32px rgba(6, 42, 68, 0.12);
    --shadow-lg: 0 24px 60px rgba(6, 42, 68, 0.18);
    --shadow-glow: 0 12px 40px rgba(0, 153, 200, 0.35);
    --radius: 16px;
    --radius-lg: 28px;
    --container: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Heebo', system-ui, -apple-system, sans-serif;
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
    direction:rtl;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ NAV ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: all .3s ease;
}

    .nav.scrolled {
        background: rgba(255,255,255,.96);
        backdrop-filter: blur(12px);
        box-shadow: var(--shadow-sm);
        padding: 12px 0;
    }

.nav__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Assistant', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #fff;
    transition: color .3s;
}

.logo__img {
    height: 44px;
    width: auto;
    display: block;
}

.logo__img--dark {
    display: none;
}

.nav.scrolled .logo__img--white {
    display: none;
}

.nav.scrolled .logo__img--dark {
    display: block;
}

.nav__links {
    display: flex;
    gap: 28px;
    list-style: none;
}

    .nav__links a {
        color: rgba(255,255,255,.95);
        font-weight: 500;
        font-size: 15px;
        transition: color .2s;
    }

.nav.scrolled .nav__links a {
    color: var(--c-text);
}

.nav__links a:hover {
    color: var(--c-accent);
}

.nav__cta {
    background: var(--c-accent);
    color: var(--c-deep);
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    transition: transform .2s, box-shadow .2s;
}

    .nav__cta:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.nav__burger {
    display: none;
    color: #fff;
    font-size: 28px;
}

.nav.scrolled .nav__burger {
    color: var(--c-deep);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(6,42,68,.55) 0%, rgba(0,153,200,.35) 100%), url('/images/hero-beach.jpg') center/cover no-repeat;
    color: #fff;
    padding: 140px 0 80px;
    overflow: hidden;
}

    .hero::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(to top, var(--c-bg), transparent);
    }

.hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__eyebrow {
    display: inline-block;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.25);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeUp .8s ease both;
}

.hero h1 {
    font-family: 'Assistant', sans-serif;
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -.02em;
    animation: fadeUp .9s .1s ease both;
}

    .hero h1 .highlight {
        background: var(--grad-warm);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.hero__sub {
    font-size: 19px;
    font-weight: 300;
    opacity: .95;
    margin-bottom: 36px;
    max-width: 540px;
    animation: fadeUp 1s .2s ease both;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 1.1s .3s ease both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    transition: all .3s;
    cursor: pointer;
}

.btn--primary {
    background: var(--grad-warm);
    color: var(--c-deep);
    box-shadow: 0 12px 30px rgba(255,138,61,.45);
}

    .btn--primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(255,138,61,.55);
    }

.btn--ghost {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.4);
    backdrop-filter: blur(10px);
}

    .btn--ghost:hover {
        background: rgba(255,255,255,.22);
    }

.btn--full {
    width: 100%;
    justify-content: center;
}

/* HERO FORM CARD */
.hero__form {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    color: var(--c-text);
    animation: fadeUp 1s .4s ease both;
    width: 483px;
    min-height: 479px;
}

    .hero__form h3 {
        font-family: 'Assistant', sans-serif;
        font-size: 26px;
        font-weight: 800;
        margin-bottom: 6px;
        color: var(--c-deep);
    }

    .hero__form p {
        color: var(--c-muted);
        font-size: 14px;
        margin-bottom: 22px;
    }

.field {
    margin-bottom: 14px;
    position:relative;
}

    .field input.error,
    .field select.error {
        border: 1px solid #d9534f !important;
    }

    .field input, .field select, .field textarea {
        width: 100%;
        padding: 14px 18px;
        border: 1.5px solid #e5ecf2;
        border-radius: 12px;
        font-family: inherit;
        font-size: 15px;
        background: #f7fafc;
        transition: all .2s;
        color: var(--c-text);
        text-align:right;
    }

        .field input:focus, .field select:focus, .field textarea:focus {
            outline: none;
            border-color: var(--c-primary);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(0,153,200,.12);
        }

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-note {
    font-size: 12px;
    color: var(--c-muted);
    text-align: center;
    margin-top: 12px;
}

/* ============ SECTION COMMON ============ */
section {
    padding: 100px 0;
    position: relative;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

    .section-head .eyebrow {
        display: inline-block;
        color: var(--c-primary);
        font-weight: 700;
        font-size: 14px;
        letter-spacing: .12em;
        text-transform: uppercase;
        margin-bottom: 14px;
    }

    .section-head h2 {
        font-family: 'Assistant', sans-serif;
        font-size: clamp(30px, 4vw, 46px);
        font-weight: 800;
        color: var(--c-deep);
        line-height: 1.15;
        margin-bottom: 16px;
        letter-spacing: -.01em;
    }

    .section-head p {
        font-size: 18px;
        color: var(--c-muted);
    }

/* ============ FEATURES (3 cards under hero) ============ */
.features {
    background: var(--c-bg);
    padding: 80px 0;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: #fff;
    border: 1px solid #eef3f7;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all .35s;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--grad-hero);
        opacity: 0;
        transition: opacity .35s;
        z-index: 0;
    }

    .feature-card > * {
        position: relative;
        z-index: 1;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-glow);
    }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover * {
            color: #fff !important;
        }

.feature-card__icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    background: var(--grad-hero);
    border-radius: 22px;
    display: grid;
    place-items: center;
    font-size: 34px;
    color: #fff;
    box-shadow: var(--shadow-glow);
    transition: transform .35s;
}

.feature-card:hover .feature-card__icon {
    background: rgba(255,255,255,.2);
    transform: scale(1.08);
}

.feature-card h3 {
    font-family: 'Assistant', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--c-deep);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--c-muted);
    font-size: 15px;
}

/* ============ COVERAGE ============ */
.coverage {
    background: var(--c-sand);
}

.coverage__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.coverage-item {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 22px;
    transition: all .3s;
    border-top: 4px solid transparent;
}

    .coverage-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
        border-top-color: var(--c-accent);
    }

.coverage-item__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0,153,200,.1);
    color: var(--c-primary);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.coverage-item h4 {
    font-family: 'Assistant', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--c-deep);
    margin-bottom: 8px;
}

.coverage-item p {
    color: var(--c-muted);
    font-size: 14px;
}

/* ============ ABOUT / SEO TEXT ============ */
.about {
    background: #fff;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.about__img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

    .about__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 4/5;
    }

    .about__img::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(6,42,68,.4), transparent 50%);
    }

.about__badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: #fff;
    padding: 16px 22px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

    .about__badge strong {
        display: block;
        font-family: 'Assistant', sans-serif;
        font-size: 28px;
        color: var(--c-primary);
        font-weight: 800;
    }

    .about__badge span {
        font-size: 13px;
        color: var(--c-muted);
    }

.about__content .eyebrow {
    color: var(--c-primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-block;
}

.about__content h2 {
    font-family: 'Assistant', sans-serif;
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 800;
    color: var(--c-deep);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about__content p {
    color: var(--c-muted);
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about__list {
    list-style: none;
    margin: 24px 0 32px;
}

    .about__list li {
        padding: 10px 0 10px 0;
        padding-right: 34px;
        position: relative;
        color: var(--c-text);
        font-weight: 500;
    }

        .about__list li::before {
            content: '✓';
            position: absolute;
            right: 0;
            top: 8px;
            width: 24px;
            height: 24px;
            background: var(--grad-hero);
            color: #fff;
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-size: 13px;
            font-weight: 700;
        }

/* ============ STATS ============ */
.stats {
    background: var(--grad-deep);
    color: #fff;
    padding: 70px 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat__num {
    font-family: 'Assistant', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    background: var(--grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 15px;
    opacity: .8;
}

/* ============ FAQ ============ */
.faq {
    background: var(--c-sand);
}

.faq__list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .3s;
}

    .faq-item:hover {
        box-shadow: var(--shadow-md);
    }

.faq-q {
    width: 100%;
    padding: 22px 26px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-family: 'Assistant', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--c-deep);
    transition: color .2s;
}

    .faq-q:hover {
        color: var(--c-primary);
    }

.faq-q__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,153,200,.1);
    color: var(--c-primary);
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 700;
    transition: transform .3s, background .3s;
}

.faq-item.open .faq-q__icon {
    transform: rotate(45deg);
    background: var(--c-primary);
    color: #fff;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-a__inner {
    padding: 0 26px 24px;
    color: var(--c-muted);
    font-size: 15px;
    line-height: 1.8;
}

/* ============ CTA / CONTACT ============ */
.cta {
    background: var(--grad-hero);
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .cta::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
    }

    .cta::after {
        content: '';
        position: absolute;
        bottom: -150px;
        left: -100px;
        width: 500px;
        height: 500px;
        background: rgba(255,255,255,.06);
        border-radius: 50%;
    }

.cta__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta__text h2 {
    font-family: 'Assistant', sans-serif;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

.cta__text p {
    font-size: 17px;
    opacity: .95;
    margin-bottom: 28px;
}

.cta__contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cta__contact {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
}

    .cta__contact .ico {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(255,255,255,.15);
        display: grid;
        place-items: center;
        font-size: 20px;
    }

.cta__form {
    background: #fff;
    color: var(--c-text);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

    .cta__form h3 {
        font-family: 'Assistant', sans-serif;
        font-size: 26px;
        font-weight: 800;
        color: var(--c-deep);
        margin-bottom: 6px;
    }

    .cta__form > p {
        color: var(--c-muted);
        font-size: 14px;
        margin-bottom: 22px;
    }

/* ============ FOOTER ============ */
.footer {
    background: var(--c-deep);
    color: rgba(255,255,255,.7);
    padding: 50px 0 24px;
    font-size: 14px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

.footer h4 {
    color: #fff;
    font-family: 'Assistant', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 8px;
}

.footer a:hover {
    color: var(--c-accent);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    opacity: .6;
}

/* ============ FLOATING WHATSAPP ============ */
.wa-fab {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(37,211,102,.45);
    z-index: 90;
    transition: transform .3s;
    animation: pulse 2.5s infinite;
}

    .wa-fab:hover {
        transform: scale(1.1);
        animation: none;
    }

/* ============ TOAST ============ */
.toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-120%);
    background: var(--c-deep);
    color: #fff;
    padding: 14px 26px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 200;
    font-weight: 600;
    transition: transform .4s ease;
}

    .toast.show {
        transform: translateX(-50%) translateY(0);
    }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(37,211,102,.45);
    }

    50% {
        box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
    .hero__grid, .about__grid, .cta__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features__grid {
        grid-template-columns: 1fr;
    }

    .coverage__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .nav__links {
        display: none;
    }

    .nav__burger {
        display: block;
    }

    .nav__links.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px 24px;
        box-shadow: var(--shadow-md);
    }

        .nav__links.open a {
            color: var(--c-text);
        }

    section {
        padding: 70px 0;
    }

    .hero {
        padding: 120px 0 60px;
    }
}

@media (max-width: 560px) {
    .coverage__grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .hero__form {
        width:auto;
    }
    .cta__form {
        padding: 26px 22px;
    }
    #form-wrapper {
        padding: 26px 22px;
    }
}


/******** loader *********/
.loader-wrapper {
    display: none;
    position: absolute;
    top:0px;
    left:0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    opacity: 0.6;
    border-radius: inherit;
}
.loader-wrapper.show {
    display: flex;
}
.loader-wrapper:before {
    content: "";
    display: block;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: rotation 1s linear infinite;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/******** loader *********/

#form-wrapper {
    display: none;
    padding: 36px;
}
#form-wrapper.show {
    display:block;
}
#form-success-wrapper {
    display: none;
    justify-content: center;
    align-items: center;
    height: 479px;
}
#form-success-wrapper.show {
    display: flex;
}
.lottie-success {
    width: 150px;
    height: 150px;
}
#form-error-wrapper {
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    color: #ff0000;
    font-weight: bold;
    line-height: 20px;
    height: 479px;
}

#form-error-wrapper.show {
    display: flex;
}