﻿
:root {
    --ink: #07080f;
    --ink2: #12172b;
    --blue: #1856f8;
    --blue2: #0c3ed4;
    --cyan: #00d9ff;
    --gold: #ffb800;
    --green: #00e5a0;
    --red: #ff3b5c;
    --white: #ffffff;
    --gray: #f4f6fb;
    --muted: #6b7899;
    --border: #e4e8f3;
    --r: 16px;
    --r-sm: 10px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.hp {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    color: var(--ink);
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════
       FLOATING WHATSAPP BUTTON
    ═══════════════════════════════════════════ */
.wa-float {
    position: fixed;
    bottom: 34px;
    left: 20px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    animation: waPulse 2.5s infinite;
}

@@keyframes waPulse {
    0%, 100% {
        box-shadow: 0 6px 24px rgba(37,211,102,.45);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 6px 40px rgba(37,211,102,.7);
        transform: scale(1.08);
    }
}

/* ═══════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════ */
.hero {
    background: var(--ink);
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* animated particle dots */
.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(24,86,248,.25) 1px, transparent 1px);
    background-size: 32px 32px;
    animation: dotsShift 25s linear infinite;
    pointer-events: none;
}

@@keyframes dotsShift {
    to {
        background-position: 32px 32px;
    }
}

/* center glow */
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(24,86,248,.22) 0%, transparent 65%);
    top: -150px;
    right: -150px;
    pointer-events: none;
    animation: glowPulse 5s ease-in-out infinite;
}

@@keyframes glowPulse {
    0%, 100% {
        opacity: .8
    }

    50% {
        opacity: 1.2
    }
}

.hero-glow2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,217,255,.12) 0%, transparent 65%);
    bottom: -80px;
    left: -80px;
    pointer-events: none;
}

/* hero content */
.hero-body {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 20px 40px;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

/* animated badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(24,86,248,.18);
    border: 1px solid rgba(24,86,248,.4);
    color: #90b4ff;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 28px;
    animation: badgePop .6s cubic-bezier(.34,1.56,.64,1) both;
}

@@keyframes badgePop {
    from {
        opacity: 0;
        transform: scale(.7)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    animation: dotBlink 1.6s infinite;
}

@@keyframes dotBlink {
    0%, 100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

/* hero title with typewriter */
.hero-h1 {
    font-size: clamp(2.1rem, 6vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
    animation: slideUp .7s .15s ease both;
}

.h1-line2 {
    color: var(--cyan);
    position: relative;
    display: inline-block;
}

    /* underline animation */
    .h1-line2::after {
        content: '';
        position: absolute;
        bottom: -4px;
        right: 0;
        height: 3px;
        width: 0;
        background: linear-gradient(90deg, var(--blue), var(--cyan));
        border-radius: 2px;
        animation: lineGrow 1s .9s ease forwards;
    }

@@keyframes lineGrow {
    to {
        width: 100%;
    }
}

.h1-gold {
    color: var(--gold);
}

.hero-sub {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,.65);
    margin-bottom: 36px;
    animation: slideUp .7s .25s ease both;
}

/* CTA buttons */
.hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp .7s .35s ease both;
    margin-bottom: 48px;
}

.btn-primary-h {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--blue);
    color: #fff;
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 800;
    padding: 15px 28px;
    border-radius: var(--r);
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(24,86,248,.45);
    transition: transform .15s, box-shadow .2s;
}

    .btn-primary-h::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,.15) 50%, transparent 70%);
        transform: translateX(150%);
        transition: transform .5s ease;
    }

    .btn-primary-h:hover::before {
        transform: translateX(-150%);
    }

    .btn-primary-h:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 36px rgba(24,86,248,.55);
    }

    .btn-primary-h:active {
        transform: scale(.97);
    }

.btn-ghost-h {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,.8);
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 24px;
    border-radius: var(--r);
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.2);
    transition: all .2s;
}

    .btn-ghost-h:hover {
        border-color: rgba(255,255,255,.5);
        color: #fff;
        background: rgba(255,255,255,.06);
    }

/* stats strip */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    animation: slideUp .7s .45s ease both;
}

.stat-box {
    text-align: center;
}

.stat-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

    .stat-num .stat-c {
        color: var(--cyan);
    }

.stat-lbl {
    font-size: 12px;
    color: rgba(255,255,255,.45);
    margin-top: 2px;
}

/* scrolling tech marquee */
.marquee-wrap {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.03);
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
}

@@keyframes marqueeScroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.35);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

    .marquee-item i {
        font-size: 16px;
    }

/* ═══════════════════════════════════════════
       VIDEO SECTION
    ═══════════════════════════════════════════ */
.video-wrap {
    padding: 60px 20px;
    background: var(--ink2);
    position: relative;
    overflow: hidden;
}

    .video-wrap::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 50% 0%, rgba(24,86,248,.15) 0%, transparent 60%);
        pointer-events: none;
    }

.video-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video-label {
    text-align: center;
    margin-bottom: 28px;
}

    .video-label span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: rgba(0,217,255,.1);
        border: 1px solid rgba(0,217,255,.25);
        color: var(--cyan);
        font-size: 13px;
        font-weight: 700;
        padding: 6px 16px;
        border-radius: 20px;
    }

.video-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
    position: relative;
    aspect-ratio: 16/9;
    background: #0a0f1e;
}

    .video-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.video-spinner-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0f1e;
    transition: opacity .5s;
}

.v-spin {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(24,86,248,.2);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ═══════════════════════════════════════════
       SERVICES (mobile card swipe)
    ═══════════════════════════════════════════ */
.services-sec {
    background: var(--gray);
    padding: 72px 0 60px;
}

.sec-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(24,86,248,.08);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.sec-h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 10px;
}

.sec-p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 40px;
}

/* horizontal scroll on mobile */
.services-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 12px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

    .services-scroll::-webkit-scrollbar {
        display: none;
    }

.srv {
    flex: 0 0 280px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 22px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}

    .srv::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--blue), var(--cyan));
        transform: scaleX(0);
        transform-origin: right;
        transition: transform .3s;
    }

    .srv:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(24,86,248,.12);
    }

        .srv:hover::before {
            transform: scaleX(1);
        }

.srv-ic {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(24,86,248,.08);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    transition: background .2s, transform .2s;
}

.srv:hover .srv-ic {
    background: var(--blue);
    color: #fff;
    transform: rotate(-5deg) scale(1.1);
}

.srv-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}

.srv-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.srv-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.srv-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--blue);
    background: rgba(24,86,248,.07);
    padding: 3px 10px;
    border-radius: 12px;
}

.srv-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    transition: gap .2s;
}

    .srv-link:hover {
        gap: 10px;
    }

/* scroll indicator dots */
.scroll-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
}

.scroll-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border);
    transition: all .3s;
    cursor: pointer;
}

    .scroll-dot.active {
        width: 20px;
        border-radius: 4px;
        background: var(--blue);
    }

/* ═══════════════════════════════════════════
       COUNTER SECTION
    ═══════════════════════════════════════════ */
.counters-sec {
    background: var(--blue);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

    .counters-sec::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 80% 50%, rgba(0,217,255,.2) 0%, transparent 55%);
        pointer-events: none;
    }

.counters-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

@@media (max-width: 600px) {
    .counters-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.counter-item {
    padding: 20px 10px;
}

.counter-num {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

    .counter-num .c-suf {
        font-size: .6em;
        color: rgba(255,255,255,.7);
    }

.counter-lbl {
    font-size: 13px;
    color: rgba(255,255,255,.7);
    margin-top: 6px;
}

/* ═══════════════════════════════════════════
       PORTFOLIO — Masonry-like grid
    ═══════════════════════════════════════════ */
.portfolio-sec {
    background: var(--ink);
    padding: 72px 20px;
}

    .portfolio-sec .sec-h2 {
        color: var(--white);
    }

    .portfolio-sec .sec-p {
        color: rgba(255,255,255,.5);
    }

    .portfolio-sec .sec-tag {
        background: rgba(24,86,248,.2);
        color: var(--cyan);
    }

.port-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 14px;
    margin-top: 40px;
}

@@media (max-width: 768px) {
    .port-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@@media (max-width: 480px) {
    .port-grid {
        grid-template-columns: 1fr;
    }
}

.port-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--ink2);
    border: 1px solid rgba(255,255,255,.06);
}

    .port-card:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

@@media (max-width: 768px) {
    .port-card:first-child {
        grid-column: span 1;
    }
}

.port-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.port-card:first-child .port-img {
    height: 260px;
}

.port-card:hover .port-img {
    transform: scale(1.06);
}

.port-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,8,15,.9) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity .3s;
}

.port-card:hover .port-overlay {
    opacity: 1;
}

.port-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.port-tag {
    font-size: 10px;
    font-weight: 700;
    color: var(--cyan);
    background: rgba(0,217,255,.15);
    padding: 2px 8px;
    border-radius: 8px;
}

.port-title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.port-desc {
    font-size: 12px;
    color: rgba(255,255,255,.6);
}

.port-link-btn {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    opacity: 0;
    transform: scale(.7);
    transition: opacity .3s, transform .3s;
}

.port-card:hover .port-link-btn {
    opacity: 1;
    transform: scale(1);
}

/* ═══════════════════════════════════════════
       PRODUCTS GRID
    ═══════════════════════════════════════════ */
.products-sec {
    background: var(--gray);
    padding: 72px 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 40px;
}

.prod-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
    position: relative;
}

    .prod-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 48px rgba(24,86,248,.1);
    }

.prod-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background: var(--gold);
    color: var(--ink);
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 8px;
}

.prod-img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--gray);
    aspect-ratio: 4/3;
}

    .prod-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
    }

.prod-card:hover .prod-img-wrap img {
    transform: scale(1.05);
}

.prod-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prod-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 10px;
    min-height: 42px;
}

.prod-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.price-old {
    font-size: 13px;
    color: var(--muted);
    text-decoration: line-through;
}

.price-new {
    font-size: 18px;
    font-weight: 900;
    color: var(--blue);
}

.prod-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    height: 44px;
    border-radius: var(--r-sm);
    background: var(--ink);
    color: #fff;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .1s;
    text-decoration: none;
}

    .btn-cart:hover {
        background: var(--blue);
    }

    .btn-cart:active {
        transform: scale(.97);
    }

.btn-wa-prod {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    height: 40px;
    border-radius: var(--r-sm);
    background: #e8fdf1;
    color: #16a34a;
    font-family: 'Tajawal', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
}

    .btn-wa-prod:hover {
        background: #d1fae5;
    }

/* ═══════════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════════ */
.testi-sec {
    background: var(--white);
    padding: 72px 20px;
}

.testi-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

    .testi-scroll::-webkit-scrollbar {
        display: none;
    }

.testi {
    flex: 0 0 300px;
    background: var(--gray);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    scroll-snap-align: start;
    transition: transform .2s, box-shadow .2s;
}

    .testi:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(24,86,248,.08);
    }

.testi-stars {
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testi-text {
    font-size: 14px;
    color: var(--ink);
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.testi-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
}

.testi-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}

.testi-role {
    font-size: 11px;
    color: var(--muted);
}

/* ═══════════════════════════════════════════
       CTA SECTION
    ═══════════════════════════════════════════ */
.cta-sec {
    background: var(--ink);
    padding: 72px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-sec::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 50% 100%, rgba(24,86,248,.2) 0%, transparent 60%);
        pointer-events: none;
    }

.cta-inner {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,184,0,.12);
    border: 1px solid rgba(255,184,0,.3);
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    animation: badgePop .5s ease both;
}

.cta-h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
}

.cta-p {
    font-size: 15px;
    color: rgba(255,255,255,.6);
    line-height: 1.8;
    margin-bottom: 32px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto 16px;
}

.cta-input {
    height: 50px;
    border-radius: var(--r);
    border: 1.5px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    padding: 0 16px;
    outline: none;
    transition: border-color .2s;
}

    .cta-input:focus {
        border-color: var(--blue);
    }

    .cta-input::placeholder {
        color: rgba(255,255,255,.35);
    }

.cta-select {
    height: 50px;
    border-radius: var(--r);
    border: 1.5px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.7);
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    padding: 0 16px;
    outline: none;
    cursor: pointer;
}

    .cta-select option {
        background: var(--ink2);
        color: #fff;
    }

.cta-textarea {
    min-height: 100px;
    border-radius: var(--r);
    border: 1.5px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    outline: none;
    resize: vertical;
    transition: border-color .2s;
}

    .cta-textarea:focus {
        border-color: var(--blue);
    }

    .cta-textarea::placeholder {
        color: rgba(255,255,255,.35);
    }

.btn-cta-submit {
    height: 52px;
    border-radius: var(--r);
    background: linear-gradient(135deg, var(--gold), #ff9500);
    color: var(--ink);
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform .15s, box-shadow .2s;
    box-shadow: 0 6px 24px rgba(255,184,0,.35);
}

    .btn-cta-submit:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 32px rgba(255,184,0,.5);
    }

    .btn-cta-submit:active {
        transform: scale(.98);
    }

.cta-note {
    font-size: 12px;
    color: rgba(255,255,255,.4);
}

/* ═══════════════════════════════════════════
       MOBILE STICKY BAR
    ═══════════════════════════════════════════ */
.mob-bar {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 999;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 10px 16px;
    box-shadow: 0 -4px 24px rgba(0,0,0,.1);
    gap: 10px;
}

@@media (max-width: 640px) {
    .mob-bar {
        display: flex;
    }
}

.mob-bar a {
    flex: 1;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.mob-wa {
    background: #25d366;
    color: #fff;
}

.mob-tel {
    background: var(--blue);
    color: #fff;
}

/* ═══════════════════════════════════════════
       UTILITIES
    ═══════════════════════════════════════════ */
@@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

.reveal-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .65s ease, transform .65s ease;
}

    .reveal-left.visible {
        opacity: 1;
        transform: none;
    }

.hidden-product {
    display: none;
}

/* load more */
.load-more {
    text-align: center;
    margin-top: 32px;
}

.btn-load {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--ink);
    border: 1.5px solid var(--border);
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--r);
    cursor: pointer;
    transition: all .2s;
}

    .btn-load:hover {
        border-color: var(--blue);
        color: var(--blue);
        background: rgba(24,86,248,.04);
    }

