﻿
/* =================== VARIABLES =================== */
:root {
    --primary: #ad1f23;
    --secondary: #231f20;
    --white: #fff;
    --transition: all 0.3s ease;
    --bg: #fafafa;
    --accent: rgba(173,31,35,0.06);
    --radius: 12px;
    --glass: rgba(255,255,255,0.7);
    --panel: #1d1a1b; /* card base */
    --muted: rgba(255,255,255,.78);
    --ring1: 0 0 0 1px rgba(255,255,255,.06), 0 12px 40px rgba(0,0,0,.45);
    --radius: 16px;
    --shadow: 0 12px 40px rgba(0,0,0,.45);
    --t: 1520ms; /* main timing */
    --e: cubic-bezier(.22,1,.36,1);
    --anim-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --anim-short: 0.6s;
    --anim-med: 0.8s;
}

/* =================== RESET =================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

html[dir="rtl"] .h4, h4 {
    font-size: calc(1.875rem + .3vw);
}

body {
    background-color: var(--secondary);
    color: var(--white);
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations */
@keyframes blink {
    0%, 80%, 100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}


/* Preloader Container */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Logo Animation */
.loader-logo img {
    width: 160px;
    animation: scaleUp 0.8s ease-in-out infinite alternate;
}

/* Loading Text Animation */
.loader-text {
    font-family: sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: #b01c1c;
    margin-top: 15px;
}

.loader-text span {
    animation: blink 1.4s infinite both;
}

.loader-text span:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-text span:nth-child(3) {
    animation-delay: 0.4s;
}



/* =================== NAVBAR =================== */
.custom-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    background: transparent;
    padding: 20px 30px;
    transition: background 0.3s ease;
}

.custom-header.scrolled {
    padding-block: 0;
    background: var(--secondary);
    box-shadow: 5px 5px 102px var(--primary);
}

.logo img {
    max-width: 110px;
}

/* Menu Desktop */
.nav-menu {
    display: flex;
    align-items: center;
}

.menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.menu li {
    position: relative;
}

.menu a {
    color: var(--white) !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s, letter-spacing 0.3s;
    }

.menu a:hover,
.menu a.active {
    color: var(--secondary) !important;
    letter-spacing: 1px;
}

.custom-header.scrolled .menu a:hover,
.custom-header.scrolled .menu a.active {
    color: var(--primary) !important;
}

/* Dropdown Desktop */
.has-dropdown .dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    background: var(--secondary);
    border-radius: 8px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease;
    min-width: 180px;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown li {
    padding: 8px 20px;
}

.dropdown li a {
    color: var(--white);
    display: block;
}

.dropdown li a:hover {
    background: var(--primary);
    border-radius: 4px;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2110;
    height: 25px;
    width: 25px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    background: var(--white);
    height: 3px;
    width: 25px;
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ICONS */
.header-icons {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    align-items: center;
    margin-left: 60px;
}

.icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    background: var(--secondary);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-header.scrolled .icon-btn {
    background: var(--white);
}

.icon-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 10px var(--primary);
}

    .icon-btn:active {
        transform: scale(0.95);
    }

.icon-svg {
    width: 32px;
    height: 32px;
    transition: transform 0.4s ease;
}

.icon-btn:hover .icon-svg {
    transform: rotate(10deg);
}

.icon-label {
    font-size: 0.55rem;
    color: var(--white);
    font-weight: 500;
    text-align: center;
    line-height: 1;
    position: absolute;
    bottom: -20px;
}

/* Language Toggle */
.lang-switch {
    font-weight: bold;
    font-size: 1rem;
    color: var(--white);
    border: none;
}

.lang-switch .lang-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.custom-header.scrolled .lang-switch,
.custom-header.scrolled .lang-text {
    color: var(--primary) !important;
}
    /* Mobile Menu Styles */
    @media (max-width: 991px) {
        .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100%;
        width: 100%;
        background: linear-gradient(35deg, var(--primary), var(--secondary));
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.4s ease;
        overflow-y: auto;
        opacity: 0.9354455239;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Mobile Dropdown Accordion */
    .has-dropdown .dropdown {
        position: static;
        background: rgba(0, 0, 0, 0.2);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .has-dropdown.open .dropdown {
        max-height: 300px;
        opacity: 1;
    }

    /* Mobile bottom icons */
    .header-icons {
        margin-top: 20px;
        justify-content: center;
        margin-left: 0;
    }
}

/* Backdrop for mobile drawer */
.header-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.header-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

/* Prevent body scroll when drawer is open */
body.nav-locked {
    overflow: hidden;
}

/* Improve dropdown stacking above backdrop */
.custom-header .nav-menu, .custom-header .dropdown {
    z-index: 2100;
}

/* RTL: mirror dropdown origin on desktop */
html[dir="rtl"] .has-dropdown .dropdown {
    left: auto;
    right: 0;
}

html[dir="rtl"] .header-icons {
    margin-left: 0;
    margin-right: 30px;
}
/* =========================================
   HERO SECTION — Smart Mover
   - Preserves original design
   - Mobile-safe layout & Swiper sizing
   - RTL-aware
   - Safe-area padding for notch devices
   ========================================= */
/* ---------- Section Wrapper ---------- */
.page-start.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 150px 3.4rem 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--secondary);
    overflow: hidden;
}

/* Primary brand circle (background accent) */
.circle {
    position: absolute;
    inset: 0;
    background: var(--primary);
    clip-path: circle(70% at right -20%);
}

/* ---------- Grid Content ---------- */
.content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(16px, 3vw, 48px);
    align-items: center;
}

.content .textBox {
    max-width: min(60ch, 100%);
}

/* Headline */
.content .textBox h1 {
    color: var(--white);
    margin: 0 0 clamp(20px, 1.2vw, 25px);
    font-weight: 800;
    font-size: clamp(3rem, 1rem + 2.8vw, 3.9rem);
    line-height: clamp(1.2, 1.1 + 0.2vw, 1.28);
    letter-spacing: -0.01em;
    text-wrap: balance;
}

/* Lead paragraph */
.content .textBox p {
    margin: 0 0 clamp(16px, 2vw, 24px);
    color: var(--muted);
    font-size: clamp(0.98rem, 0.92rem + 0.6vw, 1.15rem);
    line-height: 1.65;
    max-width: 50ch;
     
}

html[dir="rtl"] .content .textBox h1 {
    font-size: clamp(2.6rem, 1.2rem + 3.8vw, 3.9rem)
}
html[dir="rtl"] .content .textBox p {
    font-size: clamp(1.12rem, 0.92rem + 0.6vw, 1.45rem);
}

/* CTA */
.content .textBox a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 40px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.5s ease-in-out, transform .2s ease;
    max-width: 150px; /* kept from your design */
}

.content .textBox a:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* ---------- Swiper (Hero) ---------- */
.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Desktop slide size (original) */
.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 350px;
    height: 350px;
    display: flex; /* ensure proper centering */
    justify-content: center;
    align-items: center;
}

.content .imgBox {
    max-width: 500px;
    display: flex;
    justify-content: center;
}

/* Images */
.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ---------- Social Icons ---------- */
.social-icons {
    position: absolute;
    bottom: 145px;
    left: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 2;
}

.social-icons li {
    list-style: none;
}

.social-icons li a {
    display: inline-flex;
    background: #000;
    width: 50px;
    height: 50px;
    color: #fff;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,.25);
}

.social-icons li a:hover {
    background: var(--primary);
    transform: translateY(-10px);
}

.social-icons li a:hover i {
    filter: invert(1);
    transform: scale(.9);
}

/* Swiper performance polish for cube */
.heroSwiper .swiper-wrapper {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.heroSwiper .swiper-slide {
    backface-visibility: hidden;
    transform: translateZ(0);
}

.heroSwiper .swiper-slide img {
    -webkit-user-drag: none;
    user-select: none;
}

@media (max-width: 991px) {
    .page-start.home {
        /* softer padding & safe for small/short viewports */
        padding: max(96px, 12vh) clamp(16px, 5vw, 24px) clamp(56px, 8vh, 80px);
    }

    .page-start.home .content {
        grid-template-columns: 1fr;
        gap: clamp(16px, 4vw, 24px);
    }

    /* Mobile-friendly Swiper sizing */
    .swiper {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .swiper-3d {
        perspective: none !important;
    }
    .swiper.swiper-cube {
        overflow: hidden;
    }
    .heroSwiper .swiper-slide {
        width: min(86vw, 460px) !important;
        height: auto !important;
    }

    .heroSwiper .swiper-slide img {
        max-height: min(56vh, 520px);
    }

    /* Keep image box flexible */
    .content .imgBox {
        max-width: min(92vw, 560px);
        margin-inline: auto;
    }

    /* Social icons move into flow to avoid clipping */
    .social-icons {
        position: static;
        margin-top: 20px;
        justify-content: center;
        gap: 10px;
        
    }

    .social-icons li a {
        width: 44px;
        height: 44px;
    }
}

/* Extra small tweaks */
@media (max-width: 380px) {
    .page-start.home {
        padding-top: max(84px, 10vh);
    }

    .heroSwiper .swiper-slide {
        width: 90vw !important;
    }

    .content .textBox h1 {
        font-size: clamp(1.45rem, 1rem + 5.2vw, 2.2rem);
        line-height: 1.22;
    }
}

/* Safe areas (iOS/Android notches) */
@supports (padding: max(0px)) {
    .page-start.home {
        padding-top: max(96px, 10vh, env(safe-area-inset-top));
        padding-bottom: max(56px, 6vh, env(safe-area-inset-bottom));
        padding-left: max(16px, 4vw, env(safe-area-inset-left));
        padding-right: max(16px, 4vw, env(safe-area-inset-right));
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .swiper .swiper-wrapper {
        transition: none !important;
    }
}

/* =================================================================
   RTL SUPPORT — mirrors only what’s necessary
   ================================================================= */
html[dir="rtl"] .content {
    direction: rtl;
}

html[dir="rtl"] .circle {
    clip-path: circle(70% at left -20%);
}

/* Desktop: keep absolute placement, mirrored to the right */
html[dir="rtl"] .social-icons {
    left: auto;
    right: 50px;
}

@media (max-width: 991px) {
    /* Mobile: they’re in normal flow, align to end for RTL */
    html[dir="rtl"] .social-icons {
        justify-content: center;
    }
}

/* ----- MOBILE OVERRIDES ----- */
@media (max-width: 991px) {
    /* Let the slide always be 1 per view and square */
    .heroSwiper .swiper-slide {
        width: 100% !important; /* take container width */
        height: clamp(260px, 70vw, 420px) !important; /* square-ish */
    }

    /* Make the container (column) the correct width */
    .content .imgBox {
        width: 100%;
        max-width: min(92vw, 560px);
        margin-inline: auto;
    }

    /* Clean up previous rules that forced wrong widths/heights */
    .swiper {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}


/* ==================================== */
/* ============ About Start =========== */
/* ==================================== */
.about {
    position: relative;
    overflow: hidden;
    background: var(--secondary);
}

@media (min-width: 992px) {
    .about::before {
        content: "";
        position: absolute;
        width: 70%;
        height: 100%;
        top: 0;
        right: -400px;
        background: var(--primary);
        transform: skew(28deg);
    }

    .about .about-content {
        margin-bottom: 60px;
    }
}

@media (max-width: 991px) {

    .about .about-content {
        margin-bottom: 0px !important;
    }

    html[dir="rtl"] .about .tab-class .nav .nav-item a {
        min-width: 65px !important;
    }
}

.about .about-content {
    position: relative;
    z-index: 9;
}

.about .about-img {
    position: relative;
    z-index: 10;
}

.about .tab-class .nav .nav-item a {
    position: relative;
    transform: skew(18deg);
    text-align: center;
    background: var(--white);
    color: var(--secondary);
    min-width: 90px;
}

.about .tab-class .nav .nav-item a span {
    display: block;
    transform: skew(-18deg);
    width: 100%;
    font-size: .8rem;
}

.about .tab-content-icon { 
    margin-right: 5px;
}

html[dir=rtl] .about .tab-content-icon {
    margin-left: 5px;
    margin-right: 0;
}
.about .tab-class .nav .nav-item a.active {
    background: var(--primary);
    color: #FFF;
}
.about .d-flex.flex-column.ms-3 a {
    text-decoration: none;
    text-align: left !important;
    text-align: right !important;
}  
/* RTL */
@media (min-width: 992px) {
    html[dir="rtl"] .about::before {
            right: 800px !important;
        }
}


html[dir="rtl"] .about {
    direction: rtl;
}

/*** About End ***/

/* =======================
   SERVICES LAYOUT
   ======================= */


.smv-services {
    background: var(--secondary);
    color: var(--white);
    padding: clamp(56px,7vw,92px) 18px;
}

.smv-services__inner {
    max-width: 1180px;
    margin-inline: auto;
}

.smv-services__head {
    text-align: center;
    margin-bottom: 30px;
}


/* ========= GRID ========= */
.smv-grid {
    --min: 260px;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit,minmax(var(--min),1fr));
}

/* ========= CARD ========= */
.svcCard {
    --accent: var(--primary);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(0,0,0,.06));
    box-shadow: var(--shadow);
    outline: none;
    transform: translateY(24px);
    opacity: 0;
    transition: transform .6s var(--e), opacity .6s var(--e);
    isolation: isolate; /* keep inner glows contained */
}

.svcCard.is-in {
    transform: translateY(0);
    opacity: 1;
}

/* subtle brand accent line */
.svcCard::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: inherit;
    mask: conic-gradient(from 210deg, #0000 0 40%, #000 0 60%, #0000 0);
    box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset;
    pointer-events: none;
}

/* header block (icon+title+desc+btn) */
.svcCard__header {
    position: relative;
    z-index: 3;
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

/* icon chip (default visible) */
.svcCard__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--accent);
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.22));
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 8px 26px rgba(0,0,0,.5);
    transform-origin: 20% 20%;
    will-change: transform, opacity, filter;
    transition: transform calc(var(--t)*.6) var(--e), opacity calc(var(--t)*.6) var(--e), filter calc(var(--t)*.6) var(--e);
}

.svcCard .ico {
    width: 64px;
    height: 64px;
    display: block;
}

/* text */
.svcCard__title {
    margin: 4px 0 0;
    font-size: 1.6rem;
    line-height: 1.2;
}

.svcCard__desc {
    margin: 0;
    color: var(--muted);
    line-height: 1.48;
}

/* button (always present) */
.svcCard__btn {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: .5ch;
    padding: 10px 14px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: .92rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    transition: background .3s ease, border-color .3s ease, transform .3s ease, color .3s ease;
}

.svcCard__btn:hover {
    transform: translateY(-1px);
}

.svcCard__btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* media layer (photo + scrim) sits behind header and expands on hover) */
.svcCard__media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.svcCard__img {
    position: absolute;
    inset: 0;
    background: center/cover no-repeat var(--thumb, none);
    filter: brightness(.9);
    transform: translateZ(0);
    will-change: clip-path, transform, filter;
    /* initial — circular thumb behind icon area */
    --r: 0px;
    clip-path: circle(var(--r) at 68px 56px); /* aligns with icon block */
    transition: clip-path var(--t) var(--e), transform var(--t) var(--e), filter var(--t) var(--e);
}

.svcCard__scrim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.55) 75%);
    mix-blend-mode: normal;
    opacity: 0;
    transition: opacity calc(var(--t)*.55) var(--e);
}

/* ===== HOVER / FOCUS INTERACTION =====
   - icon vanishes (scale+blur+fade)
   - image grows to cover card
   - text + button appear on top of image
*/
.svcCard:hover,
.svcCard:focus-within {
    transform: translateY(-6px);
}

.svcCard:hover .svcCard__icon,
.svcCard:focus-within .svcCard__icon {
    transform: scale(1.3) rotate(-2deg);
    opacity: 0;
    filter: blur(6px);
}

.svcCard:hover .svcCard__img,
.svcCard:focus-within .svcCard__img {
    clip-path: circle(140% at 50% 50%); /* cover card smoothly */
    filter: brightness(1);
}

.svcCard:hover .svcCard__scrim,
.svcCard:focus-within .svcCard__scrim {
    opacity: 1;
}

/* elevate content over image & emphasize brand on button */
.svcCard:hover .svcCard__header,
.svcCard:focus-within .svcCard__header {
    color: #fff;
}

.svcCard:hover .svcCard__btn,
.svcCard:focus-within .svcCard__btn {
    background: var(--accent);
    border-color: transparent;
}

/* keyboard accessibility */
.svcCard:focus-visible {
    box-shadow: 0 0 0 2px var(--accent) inset, var(--shadow);
}

.smv-services__more {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: .6ch;
    padding: 10px 16px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    transition: background .25s ease, transform .25s ease;
}

.btn-view-all:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

.btn-view-all .chev {
    width: 18px;
    height: 18px;
}

/* responsiveness */
@media (max-width: 880px) {
    .smv-grid {
        --min: 240px
    }
}

@media (prefers-reduced-motion: reduce) {
    .svcCard, .svcCard__img, .svcCard__icon, .svcCard__scrim, .svcCard__btn {
        transition: none !important
    }
}

/* ================================
   SMART MOVE • STEPS / TIMELINE
   (clean, RTL-safe, animation-ready)
================================ */

/* Section */
.smv-steps {
    position: relative;
    background: var(--secondary);
    color: var(--white);
    padding: clamp(48px, 6vw, 84px) 18px;
    overflow: hidden;
}

.smv-steps__inner {
    max-width: 1160px;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

/* Heading block */
.smv-steps__head {
    text-align: center;
    margin-block-end: clamp(20px, 3.5vw, 36px);
}

.smv-steps__head .smv-title {
    font-size: clamp(1.5rem, 1.1rem + 2.2vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 8px;
}

html[dir="rtl"] .smv-steps__head .smv-title {
    font-size: clamp(1.7rem, 1.05rem + 2.2vw, 2.7rem);
}

.smv-steps__head .smv-sub {
    margin: 0;
    color: var(--muted, rgba(255,255,255,.8));
    font-size: clamp(.82rem, .92rem + .4vw, 1.08rem);
}

/* Timeline rail container */
.steps-timeline {
    --progress: 0; /* 0 → 100 (set by JS) */
    position: relative;
    padding-block: clamp(10px, 3vw, 24px);
}

/* Center vertical rail */
.steps-timeline::before,
.steps-timeline::after {
    content: "";
    position: absolute;
    inset-block: 0;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    width: 2px;
    border-radius: 2px;
}

.steps-timeline::before {
    background: rgba(255,255,255,.18);
}

.steps-timeline::after {
    background: linear-gradient(180deg, var(--primary) 0%, #ffffff 90%);
    transform-origin: top center;
    /* We use scaleY for buttery progress (GPU) */
    transform: translateX(-50%) scaleY(calc(var(--progress) / 100));
}

/* One step (alternates sides) */
.step {
    display: grid;
    grid-template-columns: minmax(0,1fr) 40px minmax(0,1fr);
    align-items: center;
    gap: clamp(12px, 2vw, 22px);
    margin-block: clamp(14px, 2.2vw, 26px);
    position: relative;
    z-index: 2; /* above the rail */
}

/* Logical alternation areas (LTR/RTL-aware via dir) */
html[dir="ltr"] .step--left {
    grid-template-areas: "card dot .";
}

html[dir="ltr"] .step--right {
    grid-template-areas: ". dot card";
}

html[dir="rtl"] .step--left {
    grid-template-areas: ". dot card";
}

html[dir="rtl"] .step--right {
    grid-template-areas: "card dot .";
}

.step-card {
    grid-area: card;
}

.step-circle {
    grid-area: dot;
    justify-self: center;
}

/* Step circle (number) */
.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--secondary);
    border: 2px solid var(--primary);
    color: #fff;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 0 0 0 rgba(200,16,46,0);
    transition: box-shadow .45s ease, transform .3s ease, background .3s ease, border-color .3s ease;
}

.step-circle span {
    font-size: 1.05rem;
}

/* Glow when in view (JS toggles .is-in) */
.step.is-in .step-circle {
    box-shadow: 0 0 0 6px rgba(200,16,46,.18), 0 0 24px rgba(200,16,46,.28);
    transform: scale(1.03);
}

/* Step card */
.step-card {
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.1));
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    padding: clamp(14px, 2.2vw, 18px);
    color: #fff;
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.step-card h4 {
    margin: 0 0 6px;
    font-size: clamp(1.2rem, .95rem + .35vw, 2.18rem);
    font-weight: 800;
    line-height: 1.25;
}

.step-card p {
    margin: 0;
    color: var(--muted, rgba(255,255,255,.8));
    font-size: clamp(.95rem, .9rem + .25vw, 1.03rem);
    line-height: 1.6;
}

.step-card:focus-within,
.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 56px rgba(0,0,0,.45);
    border-color: rgba(255,255,255,.24);
}

/* ---------- Reveal animations (compatible with your pattern) ---------- */
/* Default hidden state for any [data-animate] inside this section */
.smv-steps [data-animate] {
    opacity: 0;
    transform: translateY(32px) scale(.98);
    transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
    will-change: opacity, transform;
}

.smv-steps [data-animate].animated-in {
    opacity: 1;
    transform: none;
}

.smv-steps [data-animate].animated-out {
    opacity: 0;
    transform: translateY(32px) scale(.98);
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .step {
        grid-template-columns: 1fr;
        grid-template-areas:
            "dot"
            "card";
        text-align: start; /* logical start respects dir */
    }

    .steps-timeline::before,
    .steps-timeline::after {
        inset-inline-start: calc(104%); /* still centered rail */
    }

    .step-card {
        justify-self: stretch;
    }
}

@media (prefers-reduced-motion: reduce) {
    .steps-timeline::after,
    .step-circle,
    .step-card,
    .smv-steps [data-animate] {
        transition: none !important;
    }
}

/* ---------- Optional: small polish for RTL spacing ---------- */
html[dir="rtl"] .step-card h4,
html[dir="rtl"] .step-card p {
    text-align: start;
}
/* logical start/end safe */

/* ========================================================= */
/* =============== Start Pricing Styles ==================== */
/* ========================================================= */

/* ===== Pricing Section ===== */
.pricing-section {
    position: relative;
    background: var(--secondary);
    color: #fff;
    padding: clamp(56px, 7vw, 92px) 18px;
    overflow: hidden;
}

.pricing-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../img/public/pricing-bg.jpeg);
    z-index: 1;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
    opacity: .4555;
}

.pricing-section .container {
    max-width: 1180px;
    margin-inline: auto;
    z-index: 2;
    position: relative;
}

.pricing-section .circle {
    position: absolute;
    right: -20vw;
    top: -20vw;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(60% 60% at 50% 50%, rgba(200,16,46,.20), transparent 60%);
    pointer-events: none;
}

.section-heading {
    text-align: center;
    margin-bottom: clamp(22px, 4vw, 36px);
}

.section-heading h2 {
    font-weight: 800;
    font-size: clamp(1.8rem, 1.05rem + 2.1vw, 2.6rem);
    margin: 0 0 6px;
}

.section-heading p {
    color: var(--muted);
    margin: 0;
    font-size: clamp(1rem, .95rem + .35vw, 1.85rem)
}

/* Grid */
.pricing-cards {
    display: grid;
    gap: clamp(16px, 2.2vw, 26px);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Card */
.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.12));
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    padding: 65px 22px;
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(0,0,0,.45);
    transform: translateY(24px);
    opacity: 0;
    transition: transform .6s cubic-bezier(.22,1,.36,1), opacity .6s cubic-bezier(.22,1,.36,1);
}

.pricing-card.is-in {
    transform: translateY(0);
    opacity: 1;
}

.pricing-card .ribbon {
    position: absolute;
    top: 14px;
    right: -34px;
    transform: rotate(35deg);
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    letter-spacing: .2px;
    padding: 6px 65px;
    box-shadow: 0 10px 28px rgba(0,0,0,.4);
    }

html[dir="rtl"] .pricing-card .ribbon {
    right: auto;
    left: -34px;
    transform: rotate(-35deg);
}

.pricing-card h3 {
    margin: 6px 0 4px;
    font-weight: 800;
    font-size: 1.35rem;
}

/*.price {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin: 2px 0 10px;
}

.price .currency {
    opacity: .85;
    font-weight: 800;
}

.price .amount {
    font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.4rem);
    font-weight: 900;
    line-height: 1;
}

.price .period {
    opacity: .75;
    font-size: .95rem;
}*/

.features {
    list-style: none;
    padding: 0;
    margin: 8px 0 16px;
}

.features li {
    position: relative;
    margin: 8px 0;
    padding-inline-start: 22px;
    color: rgba(255,255,255,.92);
}

.features li::before {
    content: "";
    position: absolute;
    top: .45em;
    inset-inline-start: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px color-mix(in oklab, var(--primary) 45%, transparent);
}

.pricing-card .btn-primary {
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary), #8a0f22);
    transition: transform .18s ease, filter .18s ease;
}

.pricing-card .btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

/* Popular emphasis */
.pricing-card.popular {
    border-color: color-mix(in oklab, var(--primary) 35%, rgba(255,255,255,.1));
    box-shadow: 0 18px 46px rgba(0,0,0,.5), 0 0 28px color-mix(in oklab, var(--primary) 25%, transparent) inset;
    transform: translateY(12px); /* will animate to 0 on reveal */
}

.pricing-card.popular.is-in {
    transform: translateY(0);
}

.pricing-card.popular .price .amount {
    color: #fff;
    text-shadow: 0 0 18px color-mix(in oklab, var(--primary) 35%, transparent);
}

/* Responsive small paddings */
@media (max-width: 680px) {
    .pricing-card {
        padding: 68px 18px;
    }
}

/* === Premium Package Tag (replaces visible price) === */
.plan-tag {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin: 4px 0 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgb(255 24 0 / 8%), rgba(0, 0, 0, .18));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03), 0 8px 24px rgba(0, 0, 0, .28);
    overflow: hidden;
    justify-content: center;
}

.plan-tag .tag-glow {
    position: absolute;
    inset: -30% -10%;
    background: radial-gradient(80% 60% at var(--glow-x, 30%) 50%, rgb(255 0 19 / 18%), transparent 60%);
    filter: blur(10px);
    pointer-events: none;
    transform:
}

.plan-tag .tag-text {
    position: relative;
    z-index: 1;
    font-size: 1.5555rem;
    font-weight: 900;
    letter-spacing: .3px;
    color: #eafff8;
    text-shadow: 0 0 18px rgba(0,255,200,.18);
}


.pricing-card.popular .plan-tag .tag-text {
    color: var(--primary);
}
.pricing-card:last-of-type .plan-tag .tag-text {
    color: goldenrod;
}
/* Make the H3 play nice with the tag */
.plan-title {
    margin: 6px 0 2px;
    font-weight: 800;
    font-size: 1.18rem;
    color: #f5f9fb;
    opacity: .92;
}

/* Hover sparkles (card hover moves the glow) */
.pricing-card:hover .plan-tag {
    border-color: rgba(255,255,255,.16);
}

.pricing-card:hover .plan-tag .tag-glow {
    --glow-x: 70%;
}
/* =========================
   TESTIMONIALS – Styles
   ========================= */

#testimonials.smv-testimonials {
    --brand: var(--primary, #C8102E);
    --ink: #fff;
    --muted: rgba(255,255,255,.82);
    --panel: #191718;
    --stroke: rgba(255,255,255,.08);
    --glow: 0 18px 60px rgba(0,0,0,.5);
    position: relative;
    background: var(--secondary);
    color: var(--ink);
    padding: clamp(56px, 7vw, 96px) 18px;
    overflow: hidden;
}

#testimonials .container {
    max-width: 1140px;
    margin-inline: auto;
}

/* Decorative background rings */
#testimonials .smv-testi-bg .bg-ring {
    position: absolute;
    inset: auto;
    top: -120px;
    left: -120px;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: radial-gradient(60% 60% at 50% 50%, rgba(200,16,46,.3), rgba(200,16,46,0) 60%);
    filter: blur(16px);
    pointer-events: none;
    z-index: 0;
}

#testimonials .smv-testi-bg .ring-2 {
    top: auto;
    bottom: -140px;
    left: auto;
    right: -140px;
}

#testimonials .smv-testi-head {
    text-align: center;
    margin-bottom: clamp(18px, 3vw, 28px);
    position: relative;
    z-index: 2;
}

#testimonials .smv-testi-head .title {
    font-size: clamp(1.4rem, 1rem + 2vw, 2.2rem);
    font-weight: 800;
    margin: 0 0 8px;
}

#testimonials .smv-testi-head .sub {
    margin: 0;
    color: var(--muted);
    font-size: clamp(0.95rem, .9rem + .4vw, 1.05rem);
}

/* Swiper frame */
#testimonials .testi-swiper {
    position: relative;
    z-index: 2;
    padding: clamp(10px, 2vw, 18px);
    overflow: visible; /* allow shadows */
}

/* Slide / card */
#testimonials .swiper-slide {
    display: flex;
    transition: transform .5s cubic-bezier(.22,1,.36,1), z-index .3s, opacity .3s, filter .3s;
}

#testimonials .testi-card {
    position: relative;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.1));
    box-shadow: var(--glow);
    border: 1px solid var(--stroke);
    padding: clamp(16px, 2.2vw, 24px);
    overflow: hidden;
    display: grid;
    gap: 14px;
    min-height: 280px;
    transition: transform .5s cubic-bezier(.22,1,.36,1), filter .4s, opacity .3s, box-shadow .4s;
}

/* Parallax background inside card */
#testimonials .card-parallax {
    position: absolute;
    inset: 0;
    z-index: 0;
}

#testimonials .card-glow {
    position: absolute;
    inset: -30%;
    background: radial-gradient(50% 50% at 20% 10%, rgba(255,255,255,.06), transparent 60%), radial-gradient(50% 50% at 80% 90%, rgba(200,16,46,.20), transparent 60%);
    filter: blur(10px);
}

/* Top row */
#testimonials .testi-top {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

#testimonials .avatar {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    overflow: hidden;
    flex: 0 0 auto;
}

#testimonials .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#testimonials .avatar .ring {
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    pointer-events: none;
    border: 2px solid transparent;
    background: linear-gradient(120deg, var(--brand), rgba(255,255,255,.3)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: testiRingPulse 3.2s ease-in-out infinite;
}

@keyframes testiRingPulse {
    0%,100% {
        transform: scale(1);
        opacity: .9
    }

    50% {
        transform: scale(1.06);
        opacity: 1
    }
}

#testimonials .meta .name {
    margin: 0;
    font-weight: 800;
    font-size: 1.02rem;
}

#testimonials .meta .tag {
    font-size: .9rem;
    color: var(--muted);
}

#testimonials .rating {
    margin-inline-start: auto;
    display: flex;
    gap: 4px;
    color: #ffd76a;
}

#testimonials .star {
    width: 18px;
    height: 18px;
    display: block;
}

/* Quote */
#testimonials .quote {
    position: relative;
    z-index: 1;
    margin: 2px 0 0;
    color: var(--ink);
    font-size: clamp(1.02rem, .95rem + .5vw, 1.16rem);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    filter: blur(4px);
    transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1), filter .6s cubic-bezier(.22,1,.36,1);
}

#testimonials .qmark {
    color: var(--brand);
    font-weight: 900;
    font-size: 2rem;
    margin-inline-end: .4ch;
}

/* Bottom row */
#testimonials .testi-bottom {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

#testimonials .badge {
    display: inline-flex;
    align-items: center;
    gap: .4ch;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    font-size: .88rem;
}

#testimonials .badge-alt {
    background: rgba(200,16,46,.18);
    border-color: rgba(200,16,46,.35);
}

/* Controls */
#testimonials .testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: clamp(10px, 2vw, 16px);
}

#testimonials .swiper-button-next,
#testimonials .swiper-button-prev {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(4px);
    transition: transform .25s ease, background .25s ease;
}

#testimonials .swiper-button-next,
#testimonials .swiper-button-prev {
    top: var(--swiper-navigation-top-offset, 97%);
}

#testimonials .swiper-button-next:hover,
#testimonials .swiper-button-prev:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,.18);
}

#testimonials .swiper-button-next:after,
#testimonials .swiper-button-prev:after {
    font-size: 16px;
    color: #fff;
}

#testimonials .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: .5;
    background: #fff;
    margin: 0 6px !important;
}

#testimonials .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--brand) !important;
}

/* Autoplay progress bar */
#testimonials .autoplay-progress {
    position: relative;
    width: 180px;
    height: 3px;
    margin: 12px auto 0;
    background: rgba(255,255,255,.14);
    border-radius: 2px;
    overflow: hidden;
}

#testimonials .autoplay-progress .bar {
    position: absolute;
    inset: 0;
    transform-origin: left;
    background: linear-gradient(90deg, var(--brand), rgba(255,255,255,.5));
    transform: scaleX(0);
}

/* Reveal quote only on active */
#testimonials .swiper-slide-active .quote {
    opacity: 1;
    transform: none;
    filter: none;
}

/* ===== Focus treatment: active clear, others blurred/dim ===== */
#testimonials .swiper-slide .testi-card {
    transform: scale(.94);
    filter: blur(2.5px) saturate(.85);
    opacity: .55;
    pointer-events: none;
    z-index: 1;
}

#testimonials .swiper-slide-prev .testi-card,
#testimonials .swiper-slide-next .testi-card {
    transform: scale(.96);
    filter: blur(1.5px) saturate(.9);
    opacity: .75;
    z-index: 2;
}

#testimonials .swiper-slide-active .testi-card {
    transform: scale(1);
    filter: none;
    opacity: 1;
    pointer-events: auto;
    z-index: 3;
    box-shadow: 0 22px 68px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.06) inset;
}

/* Responsive simplifications */
@media (max-width: 768px) {
    #testimonials .testi-card {
        min-height: 260px;
    }

    #testimonials .rating {
        display: none;
    }
}


/* Soften/disable the heavy blur/scale on phones */
@media (max-width: 575.98px) {
    #testimonials .testi-swiper {
        padding: 8px;
    }

    #testimonials .swiper-slide .testi-card {
        transform: scale(.985);
        filter: none;
        opacity: 1;
    }

    #testimonials .swiper-slide-prev .testi-card,
    #testimonials .swiper-slide-next .testi-card {
        transform: scale(.98);
        filter: blur(.6px) saturate(.96);
        opacity: .96;
    }

    #testimonials .swiper-pagination-bullets .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px !important;
    }
} 

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    #testimonials .swiper-slide,
    #testimonials .testi-card,
    #testimonials .quote {
        transition: none !important;
    }
}

/* RTL niceties */
html[dir="rtl"] #testimonials .autoplay-progress .bar {
    transform-origin: right;
}

html[dir="rtl"] #testimonials .qmark {
    margin-inline-start: .4ch;
    margin-inline-end: 0;
}
/* optional: swap arrow glyphs if your theme uses text content, otherwise JS swaps logic */
html[dir="rtl"] #testimonials .swiper-button-next:after {
    transform: scaleX(-1);
}

html[dir="rtl"] #testimonials .swiper-button-prev:after {
    transform: scaleX(-1);
}
/* =========================
   SERVICE MAP – Styles
   ========================= */
/* ============ Base ============ */
.smv-map {
    background: var(--secondary);
    color: #fff;
    padding: clamp(60px,7vw,96px) 18px;
}

.smv-map .container {
    max-width: 1180px;
    margin-inline: auto;
}

.smv-map__head {
    text-align: center;
    margin-bottom: clamp(24px,5vw,36px);
}

.smv-map .smv-title {
    font-weight: 800;
    font-size: clamp(1.4rem, 1.05rem + 2.2vw, 2.4rem);
}

.smv-map .smv-sub {
    color: var(--muted);
    font-size: clamp(.77rem,.95rem + .15vw,1.12rem);
    max-width: 760px;
    margin-inline: auto;
}

/* ============ Grid ============ */
.smv-map__grid {
    display: grid;
    gap: clamp(16px, 3vw, 28px);
    grid-template-columns: 1.1fr .9fr;
    align-items: start;
}

@media (max-width: 960px) {
    .smv-map__grid {
        grid-template-columns: 1fr;
    }
}

/* ============ Map Canvas ============ */
.smv-map__canvas {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,.1));
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 16px 44px rgba(0,0,0,.45);
}

.eg-map-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    background: #141516;
    overflow: hidden;
}

.eg-map {
    width: 100%;
    height: 100%;
    display: block;
}

.map-region {
    fill: #1d1b1c;
    stroke: #353234;
    stroke-width: 1;
    transition: fill .25s ease, stroke .25s ease;
    cursor: pointer;
}

.map-region:hover {
    fill: #262325;
}

.map-region.active {
    fill: color-mix(in oklab, var(--primary) 18%, #1d1b1c);
    stroke: color-mix(in oklab, var(--primary) 45%, #343);
}

/* city labels */
.city-label {
    font-family: inherit;
    font-size: 12px;
    fill: #cdd1d6;
    paint-order: stroke;
    stroke: #141516;
    stroke-width: 3px;
}

.point {
    fill: #fff;
    stroke: var(--primary);
    stroke-width: 2px;
    r: 5;
    filter: drop-shadow(0 0 8px rgba(200,16,46,.35));
}

/* Route path */
.route {
    fill: none;
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 10px rgba(200,16,46,.4));
}

    .route.draw {
        stroke-dasharray: 600;
        stroke-dashoffset: 600;
        animation: routeDraw 1.2s cubic-bezier(.22,1,.36,1) forwards;
    }

@keyframes routeDraw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Legend */
.route-legend {
    position: absolute;
    inset-inline: 16px;
    bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.12);
    padding: 8px 12px;
    border-radius: 10px;
    backdrop-filter: blur(4px);
}

.route-legend .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot-from {
    background: #7ddc7a;
    box-shadow: 0 0 10px #7ddc7a66;
}

.dot-to {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(200,16,46,.55);
}

.route-legend .lbl {
    color: #dfe3e7;
    min-width: 8ch;
}

/* ============ Form ============ */
.smv-map__form {
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.1));
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 16px 44px rgba(0,0,0,.45);
}

.smv-map__form fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

.smv-map__form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

@media (max-width: 450px) {
    .smv-map__form .row.city {
        grid-template-columns: 1fr !important;
    }
}

.smv-map__form .row.row-chips {
    grid-template-columns: 1fr !important;
    gap: 8px;
    align-items: center;
}

.smv-map__form .col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.smv-map__form .lbl {
    font-weight: 700;
    font-size: .92rem;
    color: #eef1f5;
}

.smv-map__form .input {
    color: var(--primary);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    padding: 10px 12px;
    outline: none;
    transition: border .2s ease, background .2s ease;
}

.smv-map__form .input:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,.12);
}

.smv-map__form textarea.input {
    resize: vertical;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: .6ch;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    cursor: pointer;
    user-select: none;
}

.chip input {
    appearance: none;
    width: 0;
    height: 0;
    position: absolute;
}

.chip span::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,.5);
    margin-inline-end: .5ch;
    vertical-align: -2px;
}

.chip input:checked + span::before {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(200,16,46,.5);
}

.row-chips .chip-lbl {
    font-weight: 700;
    color: #eef1f5;
}

/* Actions */
.actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6ch;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #8a1324);
    color: #fff;
    border: 1px solid transparent;
}

.btn-ghost {
    background: rgba(255,255,255,.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,.16);
}

.btn:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
    transition: .18s ease;
}

/* Visually hidden (for legend, etc) */
.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px,1px,1px,1px);
    white-space: nowrap;
}

/* Toast */
.smv-toast {
    position: fixed;
    z-index: 1000;
    inset-inline: 18px;
    bottom: 18px;
    max-width: 420px;
    padding: 14px 16px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.2));
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 18px 44px rgba(0,0,0,.5);
    display: none;
}

.smv-toast.show {
    display: block;
    animation: toastIn .4s var(--e, cubic-bezier(.22,1,.36,1));
}

@keyframes toastIn {
    from {
        transform: translateY(12px);
        opacity: 0;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

/* RTL niceties */
html[dir="rtl"] .route-legend {
    direction: rtl;
}

html[dir="rtl"] .smv-map__form .row {
    grid-template-columns: 1fr 1fr;
}

/* =========================
   WHY SMART MOVER — Styles
   ========================= */
.why-smv {
    background-image: url(../img/public/home-banner.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    color: #fff;
    padding: clamp(56px,7vw,96px) 18px;
    opacity: 0.59524;
}

.why-smv .container {
    max-width: 1180px;
    margin-inline: auto;
}

.why-head {
    text-align: center;
    margin-bottom: clamp(20px, 4vw, 34px);
}

.why-title {
    font-weight: 900;
    font-size: clamp(1.6rem, 1rem + 2.2vw, 2.4rem);
    margin: 0 0 8px;
    position: relative;
}
html[dir=rtl] .why-title {
    font-size: clamp(1.8rem, 1rem + 2.2vw, 2.6rem);
}
.why-sub {
    color: var(--muted);
    margin: 0;
    font-size: clamp(1rem, .95rem + .35vw, 1.12rem);
}
html[dir=rtl] .why-sub {
    font-size: clamp(1.1rem, .95rem + .35vw, 1.22rem);
}
/* USPs */
.usp-grid {
    --min: 220px;
    display: grid;
    gap: clamp(14px,2.2vw,22px);
    grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
    margin-bottom: clamp(22px, 4vw, 36px);
}

.usp {
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.10));
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    padding: 18px;
    display: grid;
    gap: 8px;
    transition: transform .35s var(--e, cubic-bezier(.22,1,.36,1)), box-shadow .35s var(--e);
    box-shadow: 0 12px 36px rgba(0,0,0,.45);
}

.usp:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(0,0,0,.5);
}

.usp-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #ff0e14cc;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
}

.usp-ico svg {
    width: 24px;
    height: 24px;
    display: block;
}

.usp h3 {
    margin: 4px 0 0;
    font-weight: 800;
    font-size: 1.08rem;
}

html[dir="rtl"] .usp h3 {
    font-size: 1.422rem;
}

.usp p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

/* Stats */
.stats {
    display: grid;
    gap: clamp(14px,2vw,20px);
    grid-template-columns: repeat(4, 1fr);
    margin: clamp(10px, 2vw, 16px) 0 clamp(18px, 3vw, 26px);
}

@media (max-width: 900px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .stats {
        grid-template-columns: 1fr 1fr;
    }
}

.stat {
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.10));
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    padding: 14px 16px;
    text-align: center;
    box-shadow: 0 12px 36px rgba(0,0,0,.45);
    transition: transform .3s var(--e);
}

.stat-num {
    font-weight: 900;
    font-size: clamp(1.5rem, 1.2rem + 2vw, 2.5rem);
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 0 16px color-mix(in oklab, var(--primary) 25%, transparent);
}

html[dir="rtl"] .stat-num {
    font-size: clamp(2rem, 1.2rem + 2vw, 3.3rem);
}
.stat-num small {
    font-size: 1rem;
    opacity: .9;
    margin-inline-start: 2px;
}

.stat-label {
    color: var(--muted);
    font-weight: 600;
}

/* Trust badges */
.trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: clamp(6px, 2vw, 14px) 0 clamp(12px, 3vw, 20px);
}

.trust .badge {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    font-weight: 700;
    font-size: .92rem;
}

/* CTA */
.why-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.12));
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: clamp(14px,2.2vw,22px);
    box-shadow: 0 16px 44px rgba(0,0,0,.5);
}

.why-cta .cta-text h3 {
    margin: 0 0 6px;
    font-weight: 900;
    font-size: clamp(1.1rem, .9rem + 1.1vw, 1.45rem);
}

.why-cta .cta-text p {
    margin: 0;
    color: var(--muted);
}

.why-cta .cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-whatsapp, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
}

.btn-whatsapp {
    background: #25D366;
    color: #0b2716;
}

.btn-whatsapp:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    transition: .18s ease;
}

.btn-outline {
    background: rgba(255,255,255,.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,.16);
}

.btn-outline:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
    transition: .18s ease;
}

@media (max-width: 760px) {
    .why-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .why-cta .cta-actions {
        justify-content: center;
    }
}

/* RTL niceties (auto logical props mostly OK) */
html[dir="rtl"] .usp h3 {
    text-align: right;
}

html[dir="rtl"] .usp p {
    text-align: right;
}


/* =========================
   FAQ Section Styles
   ========================= */
.smv-faq {
    background: var(--secondary);
    color: #fff;
    padding: clamp(56px, 7vw, 96px) 18px;
}

.smv-faq .container {
    max-width: 900px;
    margin-inline: auto;
}

.faq-head {
    text-align: center;
    margin-bottom: clamp(20px, 4vw, 36px);
}

.faq-title {
    font-weight: 900;
    font-size: clamp(1.6rem, 1rem + 2.2vw, 2.4rem);
    margin: 0 0 8px;
}

.faq-sub {
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, .95rem + .35vw, 1.12rem);
}

/* Accordion */
.faq-accordion {
    display: grid;
    gap: 14px;
}

.faq-item {
    border-radius: 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    overflow: hidden;
}

.faq-q {
    padding: 14px 16px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
}

.faq-q::after {
    content: '+';
    position: absolute;
    inset-inline-end: 16px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .3s ease;
}

.faq-item.open .faq-q::after {
    content: '–';
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    color: var(--muted);
    line-height: 1.55;
    transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-a {
    padding: 10px 16px 16px;
    max-height: 500px;
}

/* ===== Contact Section (Premium) ===== */
.contact-section {
    background: var(--secondary);
    color: #fff;
    padding: clamp(56px,6vw,96px) 18px;
}

.contact-section .container {
    max-width: 1180px;
    margin-inline: auto;
}

.contact-head {
    text-align: center;
    margin-bottom: clamp(26px,4vw,42px);
}

.contact-head h2 {
    font-size: clamp(1.6rem, 1.1rem + 1.8vw, 2.6rem);
    margin: 0 0 8px;
    font-weight: 800;
}

.contact-head p {
    margin: 0;
    color: rgba(255,255,255,.78);
}

.contact-head .brand {
    color: var(--primary);
}

.contact-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
}

@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form, .contact-info {
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.1));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: clamp(18px,2vw,28px);
    backdrop-filter: blur(6px);
    box-shadow: 0 14px 40px rgba(0,0,0,.45);
}

/* Form */
.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    font-size: .95rem;
    margin-bottom: 6px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 10px;
    background: #1e1f21;
    color: #fff;
    font-size: .98rem;
    transition: border .25s, box-shadow .25s;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: rgba(255,255,255,.55);
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px color-mix(in oklab, var(--primary) 35%, transparent);
}

.contact-form .btn-primary {
    width: 100%;
    padding: 12px;
    border: 0;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary), #8a0f22);
    color: #fff;
    transition: transform .18s ease, filter .18s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
}

/* Info */
.contact-info h3 {
    margin: 0 0 12px;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary);
}

.contact-info ul {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}

.contact-info li {
    margin-bottom: 10px;
    color: #fff;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info i {
    color: var(--primary);
    margin-top: 2px;
}

.contact-info a {
    color: #fff;
    text-decoration: underline dotted rgba(255,255,255,.4);
}

.contact-info a:hover {
    text-decoration-color: #fff;
}

.contact-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0 18px;
}

.contact-actions .btn-primary,
.contact-actions .btn-secondary {
    flex: 1;
    text-align: center;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
}

.contact-actions .btn-primary {
    background: var(--primary);
    color: #fff;
}

.contact-actions .btn-secondary {
    background: #25D366;
    color: #0f1011;
}

.map-box iframe {
    border-radius: 12px;
}

/* Toast (same style used elsewhere) */
.toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1c1b1c;
    color: #fff;
    border-left: 4px solid var(--primary);
    padding: 12px 14px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,.45);
    opacity: 0;
    transform: translateY(16px);
    animation: toast-in .35s ease forwards;
}

@keyframes toast-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toast-out {
    to {
        opacity: 0;
        transform: translateY(16px);
    }
}

/* Language visibility (auto toggle via JS) */
.en {
    display: none;
}

.ar {
    display: none;
}

/* RTL tweaks */

html[dir="rtl"] .contact-info i {
    margin: 0 0 0 10px;
}

/* ======================================== */
/* ========= Start Partner Styles ========= */
/* ======================================== */
.partners {
    background: var(--primary);
    color: #fff;
    padding: clamp(44px, 6vw, 86px) 18px;
}

.partners .swiper-slide {
    height: auto !important;
}
.partners .container {
    max-width: 1180px;
    margin-inline: auto;
}

.partners-head {
    text-align: center;
    margin-bottom: clamp(18px, 3vw, 28px);
}

.partners-head h2 {
    margin: 0 0 8px;
    font-weight: 800;
    font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.6rem);
}

.partners-head p {
    margin: 0;
    color: rgba(255,255,255,.75);
}

.partners-wrap {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.08));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: clamp(12px, 1.5vw, 16px);
    box-shadow: 0 14px 40px rgba(0,0,0,.45);
    overflow: hidden;
}

.partnersSwiper {
    width: 100%;
}

.partners .swiper-slide {
    display: flex;
    justify-content: center;
}

.partner-card {
    display: grid;
    place-items: center;
    width: clamp(150px, 18vw, 220px);
    height: clamp(84px, 9vw, 110px);
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    transition: transform .25s ease, filter .25s ease, background .25s ease, border-color .25s ease;
    overflow: hidden;
}

    .partner-card img {
        width: 100%;
        min-height: 90px;
        object-fit: cover;
        filter: grayscale(100%) contrast(1.05) opacity(.82);
        transition: filter .35s ease, transform .35s ease;
    }

.partner-card:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.18);
}

.partner-card:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.04);
}

/* Nav (optional) */
.partners-nav {
    position: absolute;
    inset: 0 6px 0 6px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.partners-prev, .partners-next {
    pointer-events: auto;
    appearance: none;
    border: 0;
    border-radius: 10px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,.35);
    color: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,.35);
    transition: background .2s ease, transform .2s ease;
}

.partners-prev:hover, .partners-next:hover {
    background: rgba(0,0,0,.5);
    transform: translateY(-1px);
}

.partners-prev span, .partners-next span {
    font-weight: 800;
}

.partners-cta {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: clamp(16px, 3vw, 24px);
}

.btn-outline {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.35);
    transition: transform .18s ease, border-color .18s ease;
}

.btn-outline:hover {
    transform: translateY(-1px);
    border-color: #fff;
}

/* RTL */
html[dir="rtl"] .partners-prev span {
    transform: scaleX(-1);
}
/* flip arrow glyphs */
html[dir="rtl"] .partners-next span {
    transform: scaleX(-1);
}

/* Language visibility (same pattern you use) */
.en {
    display: none;
}

.ar {
    display: none;
}


/* ================================
   PAGE HEADER
================================ */
.page-header {
    background: var(--secondary);
    color: var(--white);
    padding: clamp(100px, 10vw, 120px) 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Optional subtle background overlay */
.page-header::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background: url('../img/public/home-banner.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.5;
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: clamp(1.8rem, 1.2rem + 2.5vw, 3rem);
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.2;
}

/* Breadcrumb */
.breadcrumb-nav {
    font-size: 0.95rem;
}

.breadcrumb {
    display: inline-flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--muted);
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
}

.breadcrumb a {
    color: var(--brand);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--white);
}

    .breadcrumb .current {
        color: var(--white);
        font-weight: 600;
    }

/* RTL support */
html[dir="rtl"] .breadcrumb {
    flex-direction: row;
}

html[dir="rtl"] .breadcrumb li[aria-hidden="true"] {
    transform: scaleX(-1); /* flips "/" */
}

/* =================================== */
/* ====== Start Service Details ====== */
/* =================================== */

/* ============ CORE ============ */
.service-page {
    background: var(--secondary);
    color: var(--white);
}

/* Container */
.container {
    max-width: 1160px;
    margin-inline: auto;
    padding-inline: 18px;
}

/* Section heads */
.sec-head {
    text-align: center;
    margin-block-end: clamp(16px, 3vw, 28px);
}

.sec-title {
    margin: 0 0 8px;
    font-weight: 800;
    font-size: clamp(1.3rem, 1rem + 1.8vw, 2rem);
}

.sec-sub {
    margin: 0;
    color: var(--muted);
}

/* Buttons */
.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6ch;
    padding: .8rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform .2s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: 1px solid transparent;
}

    .btn-primary:hover {
        transform: translateY(-1px);
    }

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
}

    .btn-outline:hover {
        transform: translateY(-1px);
        border-color: #fff;
    }

/* ============ SERVICE HERO ============ */
.svc-hero {
    padding: clamp(36px, 6vw, 68px) 0;
}

.svc-hero__grid {
    display: grid;
    gap: clamp(16px, 3vw, 28px);
    grid-template-columns: repeat(12,1fr);
}

.svc-hero__content {
    grid-column: span 6;
}

.svc-hero__media {
    grid-column: span 6;
    margin: 0;
}

.svc-title {
    margin: 0 0 8px;
    font-weight: 800;
    font-size: clamp(1.6rem, 1.1rem + 2.2vw, 2.4rem);
}

.svc-sub {
    margin: 0 0 14px;
    color: var(--muted);
    max-width: 60ch;
}

.svc-metrics {
    display: flex;
    gap: clamp(14px, 2vw, 24px);
    padding: 0;
    margin: 0 0 10px;
    list-style: none;
    flex-wrap: wrap;
}

.svc-metrics .num {
    font-size: 1.05rem;
    font-weight: 800;
}

.svc-metrics .label {
    color: var(--muted);
    font-size: .95rem;
}

.svc-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.svc-hero__media img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(0,0,0,.5);
}

/* ============ BENEFITS ============ */
.svc-benefits {
    padding: clamp(28px,5vw,54px) 0;
}

.benefit-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
}

.benefit {
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.12));
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 16px;
    display: grid;
    gap: 6px;
    box-shadow: 0 14px 36px rgba(0,0,0,.4);
}

.benefit-ico svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

/* ============ PROCESS ============ */
.svc-process {
    padding: clamp(28px,5vw,54px) 0;
}

.proc-steps {
    position: relative;
    padding-block: 10px;
    margin: 0;
    list-style: none;
}

.proc-steps::before {
    content: "";
    position: absolute;
    inset-block: 0;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: rgba(255,255,255,.16);
}

.proc-steps li {
    display: grid;
    grid-template-columns: minmax(0,1fr) 40px minmax(0,1fr);
    gap: 16px;
    align-items: center;
    margin-block: clamp(10px, 2vw, 16px);
}

html[dir="ltr"] .proc-steps li:nth-child(odd) {
    grid-template-areas: "card dot .";
}

html[dir="ltr"] .proc-steps li:nth-child(even) {
    grid-template-areas: ". dot card";
}

html[dir="rtl"] .proc-steps li:nth-child(odd) {
    grid-template-areas: ". dot card";
}

html[dir="rtl"] .proc-steps li:nth-child(even) {
    grid-template-areas: "card dot .";
}

.proc-steps .dot {
    grid-area: dot;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 2px solid var(--primary);
    background: var(--secondary);
    font-weight: 800;
}

.proc-steps .card {
    grid-area: card;
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.12));
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 14px 36px rgba(0,0,0,.4);
}

.proc-steps .card h4 {
    margin: 0 0 6px;
    font-weight: 800;
    font-size: 1.3rem;
}

.proc-steps .card p {
    margin: 0;
    color: var(--muted);
}

/* ============ GALLERY ============ */
.svc-gallery {
    padding: clamp(28px,5vw,54px) 0;
}

.gal-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
}

.gal-grid .gal-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 4/3;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.gal-grid .gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

.gal-grid .gal-item:hover img {
    transform: scale(1.05);
}

/* ============ PACKAGES TEASER ============ */
.svc-packages {
    padding: clamp(28px,5vw,54px) 0;
}

.pkg-grid {
    display: grid;
    gap: 16px;
    margin-block: 6px 10px;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
}

.pkg-card {
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.1));
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 16px;
    display: grid;
    gap: 8px;
    box-shadow: 0 14px 36px rgba(0,0,0,.4);
}

    .pkg-card .price {
        font-weight: 800;
        font-size: 1.1rem;
    }

.svc-cta.center {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

/* ============ FAQ ============ */
.svc-faq {
    padding: clamp(28px,5vw,54px) 0;
}

.faq-acc .faq-item {
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    margin-block: 10px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.1));
}

.faq-q {
    width: 100%;
    text-align: start;
    padding: 14px 16px;
    border: none;
    background: transparent;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-a {
    padding: 0 16px 14px;
    color: var(--muted);
    display: none;
}

.faq-item.open .faq-a {
    display: block;
}

/* ============ TRUST ============ */
.svc-trust {
    padding: clamp(20px,4vw,36px) 0;
}

.trust-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(120px,1fr));
    align-items: center;
}

.trust-grid .badge {
    text-align: center;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    font-weight: 700;
}

/* ============ RELATED ============ */
.svc-related {
    padding: clamp(28px,5vw,54px) 0;
}

.rel-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
}

.rel-card {
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.1));
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 16px;
    display: grid;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 14px 36px rgba(0,0,0,.4);
}

.rel-card:hover {
    transform: translateY(-2px);
    transition: transform .25s ease;
}

@media (max-width: 900px) {
    .svc-hero__content {
        grid-column: 1 / -1;
    }

    .svc-hero__media {
        grid-column: 1 / -1;
    }
}

/* ===== Skeletons (component-aware) ===== */
.skel {
    position: relative;
    overflow: hidden;
    background: var(--secondary);
    border-radius: 6px;
}

.skel::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.55) 50%, rgba(255,255,255,0) 100%);
    animation: shimmer 1.25s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}


.skel-line {
    height: 1.1em;
    margin: .35em 0;
}

.skel-line.lg {
    height: 1.6em;
}

.skel-line.sm {
    height: .9em;
}


.skel-img {
    width: 100%;
    aspect-ratio: 16/10;
}

.skel-chip {
    height: 36px;
    border-radius: 18px;
}


.svc-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2rem;
    align-items: center;
}

.svc-metrics {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.gal-grid, .pkg-grid, .rel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 16px;
}


@media (max-width: 992px) {
    .svc-hero__grid {
        grid-template-columns: 1fr;
    }
}


/* Basic card look for skeleton blocks */
.card-skel {
    padding: 16px;
    border: 1px solid #eee;
    border-radius: 10px;
}


/* Image wrapper to avoid CLS while loading */
.img-wrap {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--secondary);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===================== */
/* Start Blog Page Styls */
/* ===================== */

/* ====== Layout ====== */
.blog-page {
    background: var(--secondary);
    color: var(--white);
}

.container {
    max-width: 1160px;
    margin-inline: auto;
    padding-inline: 18px;
}

/* Controls */
.blog-controls {
    display: grid;
    gap: 16px;
    padding-block: clamp(14px, 3vw, 22px);
}

.filters {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(12, 1fr);
    align-items: end;
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.10));
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 12px;
}

    .filters .field {
        display: grid;
        gap: 6px;
        grid-column: span 3;
    }

        .filters .field label {
            font-weight: 700;
            font-size: .92rem;
            color: rgba(255,255,255,.85);
        }

    .filters input[type="search"], .filters select {
        width: 100%;
        padding: 10px 12px;
        border-radius: 10px;
        border: 1px solid rgba(255,255,255,.16);
        background: rgba(0,0,0,.25);
        color: #fff;
        outline: none;
    }

    .filters input::placeholder {
        color: rgba(255,255,255,.55);
    }

#blog-apply {
    grid-column: span 3;
    justify-self: end;
}

@media (max-width: 900px) {
    .filters .field {
        grid-column: span 6;
    }

    #blog-apply {
        grid-column: span 12;
        justify-self: stretch;
    }
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .tags .tag {
        display: inline-flex;
        align-items: center;
        gap: .5ch;
        padding: 6px 10px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,.16);
        background: rgba(255,255,255,.06);
        cursor: pointer;
        transition: transform .2s ease, background .25s ease, border-color .25s ease;
    }

        .tags .tag:hover {
            transform: translateY(-1px);
            border-color: #fff;
        }

/* Featured */
.blog-featured {
    margin-block: clamp(10px, 3vw, 18px);
}

.feature-card {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(12,1fr);
    align-items: center;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.10));
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 18px 60px rgba(0,0,0,.45);
}

    .feature-card .img {
        grid-column: span 6;
        aspect-ratio: 16/9;
        overflow: hidden;
    }

        .feature-card .img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

    .feature-card .body {
        grid-column: span 6;
        padding: 16px;
        display: grid;
        gap: 8px;
    }

    .feature-card .badges {
        display: flex;
        gap: 6px;
        flex-wrap: wrap;
    }

.badge {
    font-size: .8rem;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
}

.meta {
    color: var(--muted);
    font-size: .9rem;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.feature-card .title {
    font-weight: 800;
    font-size: clamp(1.2rem,1rem + 1vw,1.6rem);
    margin: 0;
}

.feature-card .excerpt {
    color: var(--muted);
    margin: 0;
}

.feature-card .actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.readtime {
    opacity: .85;
}

@media (max-width: 900px) {
    .feature-card .img {
        grid-column: 1 / -1;
    }

    .feature-card .body {
        grid-column: 1 / -1;
    }
}

/* ===== NEW: Main + Sidebar Layout ===== */
.blog-content {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 320px);
    gap: 18px;
    align-items: start;
}

@media (max-width: 1000px) {
    .blog-content {
        grid-template-columns: 1fr;
    }
}

/* Grid */
.blog-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-block: clamp(12px, 3vw, 20px);
}

/* Card */
.post-card {
    position: relative;
    display: grid;
    gap: 10px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.12));
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 14px 36px rgba(0,0,0,.4);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .post-card:hover {
        transform: translateY(-2px);
        border-color: rgba(255,255,255,.22);
    }

    .post-card .thumb {
        aspect-ratio: 16/10;
        overflow: hidden;
    }

        .post-card .thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .5s ease;
        }

    .post-card:hover .thumb img {
        transform: scale(1.04);
    }

    .post-card .body {
        padding: 12px;
        display: grid;
        gap: 6px;
    }

    .post-card .title {
        margin: 0;
        font-weight: 800;
        font-size: 1.05rem;
    }

    .post-card .excerpt {
        color: var(--muted);
        margin: 0;
    }

.badges-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.post-card .meta {
    color: var(--muted);
    font-size: .85rem;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.card-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Skeletons */
.skel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    min-height: 160px;
}

    .skel::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.08) 50%, rgba(255,255,255,0) 100%);
        transform: translateX(-100%);
        animation: skel 1.2s infinite;
    }

@keyframes skel {
    to {
        transform: translateX(100%);
    }
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-block: 8px 16px;
}

.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6ch;
    padding: .7rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform .2s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: 1px solid transparent;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
}

    .btn-outline:disabled {
        opacity: .5;
        cursor: not-allowed;
    }

.pg-info {
    color: var(--muted);
}

/* State */
.blog-state {
    text-align: center;
    padding: 18px;
    border: 1px dashed rgba(255,255,255,.25);
    border-radius: 12px;
    margin-block: 10px 24px;
}

/* Tag/Share mini buttons */
.btn-chip {
    display: inline-flex;
    gap: .4ch;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    color: #fff;
    text-decoration: none;
    transition: background .25s ease, border-color .25s ease, transform .2s ease;
}

    .btn-chip:hover {
        transform: translateY(-1px);
        border-color: #fff;
    }

/* ===== NEW: Sidebar (Popular + Archive) ===== */
.blog-sidebar {
    display: grid;
    gap: 14px;
}

    .blog-sidebar .widget {
        display: grid;
        gap: 10px;
        background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.12));
        border: 1px solid rgba(255,255,255,.10);
        border-radius: 14px;
        padding: 14px;
        box-shadow: 0 10px 28px rgba(0,0,0,.35);
    }

        .blog-sidebar .widget h3 {
            margin: 0;
            font-size: 1rem;
            font-weight: 800;
            color: #fff;
        }

/* Popular mini list */
#blog-popular {
    display: grid;
    gap: 10px;
}

    #blog-popular .mini-post {
        display: grid;
        grid-template-columns: 64px 1fr;
        gap: 10px;
        align-items: center;
        padding: 8px;
        border-radius: 12px;
        text-decoration: none;
        color: #fff;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.08);
        transition: transform .2s ease, border-color .25s ease, background .25s ease;
    }

        #blog-popular .mini-post:hover {
            transform: translateY(-1px);
            border-color: rgba(255,255,255,.22);
        }

        #blog-popular .mini-post img {
            width: 64px;
            height: 48px;
            object-fit: cover;
            border-radius: 8px;
            display: block;
        }

        #blog-popular .mini-post .title {
            font-size: .92rem;
            font-weight: 700;
            display: block;
            margin: 0 0 4px 0;
        }

        #blog-popular .mini-post time {
            font-size: .8rem;
            color: var(--muted);
        }

/* Archive list */
#blog-archive {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

    #blog-archive li a {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        text-decoration: none;
        color: #fff;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 12px;
        padding: 10px 12px;
        transition: transform .2s ease, border-color .25s ease, background .25s ease;
    }

        #blog-archive li a:hover {
            transform: translateY(-1px);
            border-color: rgba(255,255,255,.22);
        }

        #blog-archive li a::after {
            content: "›";
            opacity: .7;
        }

/* ===== NEW: Reveal animation for [data-animate] ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(10px);
    will-change: opacity, transform;
    transition: opacity .5s ease, transform .5s ease;
}

.animated-in[data-animate] {
    opacity: 1;
    transform: none;
}

/* RTL tweaks */
html[dir="rtl"] .meta,
html[dir="rtl"] .badges,
html[dir="rtl"] .card-actions {
    flex-direction: row-reverse;
}

html[dir="rtl"] #blog-archive li a::after {
    content: "‹";
}


/* ================================ */
/* ===== Start Blog Detail ======== */
/* ================================ */

.post-page {
    background: var(--secondary);
    padding-block: 3.2555rem;
    color: #fff;
}

.container {
    max-width: 1160px;
    margin-inline: auto;
    padding-inline: 18px;
}

.post-page article {
    overflow: hidden;
}

/* progress */
.read-progress {
    position: sticky;
    top: 0;
    z-index: 9999;
    height: 3px;
    background: rgba(255,255,255,.12);
}

.read-progress .bar {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg,var(--primary),#fff);
    transform-origin: left;
}

/* layout */
.post-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0,1fr) 320px;
    align-items: start;
}

@media (max-width:980px) {
    .post-grid {
        grid-template-columns: 1fr;
    }

    .post-aside {
        order: -1;
        position: static !important;
    }
}

/* hero */
.post-hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    margin: 0;
}

.post-hero img {
    width: 100%;
    height: min(56vh,520px);
    object-fit: cover;
    display: block;
}

.post-hero-meta {
    position: absolute;
    inset: auto 12px 12px 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    padding: 6px 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .5ch;
    padding: 4px 10px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
}

/* head/meta */
.post-head {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.post-title {
    margin: 0;
    font-weight: 800;
    font-size: clamp(1.4rem,1.1rem + 2vw,2.2rem);
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.author {
    display: flex;
    gap: 10px;
    align-items: center;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.2);
}

.name {
    font-weight: 800;
}

.role {
    color: var(--muted);
    font-size: .9rem;
    display: block;
}

.btn-chip {
    display: inline-flex;
    align-items: center;
    gap: .4ch;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.08);
    color: #fff;
    text-decoration: none;
}

/* share */
.post-share {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 10px 0;
}

.muted {
    color: var(--muted);
}

/* content */
.post-content {
    line-height: 1.8;
    font-size: clamp(1rem,.96rem + .2vw,1.06rem);
}

.post-content p {
    margin: 0 0 1rem;
    color: rgba(255,255,255,.92);
}

.post-content h2, .post-content h3, .post-content h4 {
    margin: 1.4rem 0 .6rem;
    font-weight: 800;
    scroll-margin-top: 90px;
}

.post-content blockquote {
    border-inline-start: 4px solid var(--primary);
    padding: 8px 12px;
    background: rgba(255,255,255,.05);
    border-radius: 10px;
}

.post-content img {
    max-width: 100%;
    border-radius: 12px;
    display: block;
    margin: 10px auto;
}

.post-content pre {
    background: #111;
    color: #eee;
    padding: 12px;
    border-radius: 12px;
    overflow: auto;
    border: 1px solid rgba(255,255,255,.12);
}

.post-content code {
    background: rgba(255,255,255,.08);
    padding: 2px 6px;
    border-radius: 6px;
}

/* tags */
.post-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 12px 0;
}

/* author box */
.post-author {
    display: grid;
    gap: 12px;
    grid-template-columns: 80px 1fr;
    align-items: start;
    border: 1px solid rgba(255,255,255,.14);
    background: linear-gradient(180deg,rgba(255,255,255,.05),rgba(0,0,0,.12));
    border-radius: 14px;
    padding: 12px;
    margin: 14px 0;
}

.avatar-lg {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.2);
}

.author-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* pager */
.post-pager {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 12px 0;
}

.pager {
    display: flex;
    gap: 8px;
    align-items: center;
    max-width: 49%;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.pager .hint {
    opacity: .75;
}

/* aside */
.post-aside {
    position: sticky;
    top: 90px;
    display: grid;
    gap: 18px;
    align-self: start;
}

.toc {
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    border-radius: 12px;
    overflow: hidden;
}

.toc-head {
    font-weight: 800;
    padding: 10px 12px;
    background: rgba(0,0,0,.2);
}

.toc-list {
    max-height: 420px;
    overflow: auto;
    padding: 8px;
}

.toc-list a {
    display: block;
    padding: 6px 8px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: .95rem;
}

.toc-list a.active {
    background: var(--primary);
}

/* related */
.related {
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    padding: 12px;
    background: rgba(255,255,255,.06);
}

.rel-head {
    margin: 0 0 8px;
    font-weight: 800;
}

.rel-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}

.rel-card {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    padding: 8px;
    background: rgba(0,0,0,.2);
}

.rel-card img {
    width: 88px;
    height: 58px;
    object-fit: cover;
    border-radius: 8px;
}

/* skeleton */
.skel {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,.06);
}

.skel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.08) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    animation: skel 1.2s infinite;
}

@keyframes skel {
    to {
        transform: translateX(100%);
    }
}

/* rtl */
html[dir="rtl"] .post-meta {
    flex-direction: row;
}

html[dir="rtl"] .post-share {
    flex-direction: row;
}


/* ================================ */
/* ========== Login Page ========== */
/* ================================ */

/* Page header */
.page-header {
    position: relative;
    background: var(--secondary);
    color: #fff;
    padding: 107px 18px 80px;
}

    .page-header .container {
        max-width: 1160px;
        margin-inline: auto;
    }

.ph-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(70% 70% at 100% 0%, rgba(200,16,46,.25), transparent 60%);
    pointer-events: none;
}

.page-title {
    margin: 0;
    font-weight: 800;
    font-size: clamp(1.4rem,1rem + 2vw,2rem);
}

.page-sub {
    margin: .4rem 0 0;
    color: var(--muted);
}

/* Auth layout */
.auth-page {
    background: var(--secondary);
    color: #fff;
    min-height: calc(100vh - 120px);
    padding: 28px 0 56px;
}

.container {
    max-width: 1160px;
    margin-inline: auto;
    padding-inline: 18px;
}

.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

@media (max-width: 980px) {
    .auth-grid {
        grid-template-columns: 1fr;
    }

    .auth-aside {
        order: 2;
    }
}

/* Aside */
.auth-aside {
    position: relative;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.12));
}

.aside-inner {
    padding: 18px;
    display: grid;
    gap: 12px;
}

.brand-badge img {
    width: 160px;
    height: auto;
    display: block;
    filter: drop-shadow(0 6px 24px rgba(0,0,0,.45));
}

.aside-title {
    margin: .4rem 0 0;
    font-weight: 900;
    font-size: clamp(1.2rem, 1rem + 1.4vw, 1.8rem);
}

.aside-sub {
    margin: 0;
    color: var(--muted);
}

.aside-points {
    margin: 6px 0 0;
    padding: 0 0 0 1rem;
}

.aside-points li {
    margin: .3rem 0;
}

.aside-hero {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
}

.aside-hero img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    filter: brightness(.95);
}

.aside-hero .glow {
    position: absolute;
    inset: auto 0 0 0;
    height: 40%;
    background: linear-gradient(180deg, transparent, rgba(200,16,46,.25));
}

/* Card */
.auth-card {
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.16));
    padding: 18px;
}

.auth-head h2 {
    margin: .2rem 0;
    font-weight: 900;
}

.muted {
    color: var(--muted);
}

/* Fields */
.field {
    display: grid;
    gap: 6px;
    margin: 12px 0;
}

.field label {
    font-weight: 700;
}

.field input {
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    padding: 12px 14px;
    color: #fff;
    outline: none;
    transition: border-color .2s, background .2s, box-shadow .2s;
}

.field input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 45%, transparent);
}

.err {
    color: #ff9a9a;
    min-height: 18px;
    display: block;
}

.pw-wrap {
    position: relative;
}

.pw-toggle {
    position: absolute;
    inset: 0 8px 0 auto;
    width: 36px;
    height: 100%;
    display: grid;
    place-items: center;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.row-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 6px 0 12px;
}

.check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

    .check input {
        accent-color: var(--primary);
    }

.captcha-slot {
    margin: 10px 0;
    min-height: 60px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.04);
    border: 1px dashed rgba(255,255,255,.12);
    border-radius: 12px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    cursor: pointer;
    font-weight: 800;
    box-shadow: 0 12px 36px rgba(0,0,0,.45);
    transition: transform .2s ease, background .2s;
}

.btn-primary:disabled {
    opacity: .7;
    cursor: not-allowed;
}

.btn-primary.wide {
    width: 100%;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.06);
    color: #fff;
    border-radius: 12px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 700;
}

.iconed img {
    width: 18px;
    height: 18px;
    margin-inline-end: 8px;
    vertical-align: middle;
}

.spinner {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,.45);
    border-top-color: #fff;
    display: none;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading .spinner {
    display: inline-block;
}

.loading .btn-label {
    opacity: .6;
}

/* Separator */
.sep {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    margin: 12px 0;
}

.sep::before, .sep::after {
    content: "";
    height: 1px;
    background: rgba(255,255,255,.18);
    flex: 1;
}

/* Socials */
.socials {
    display: grid;
    gap: 10px;
}

.socials .btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Helpers */
.link {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,255,255,.35);
}

.link:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.help, .switch {
    text-align: center;
    color: var(--muted);
}

/* Toasts */
.auth-toast {
    min-height: 22px;
}

.toast-stack {
    position: fixed;
    top: 90px;
    inset-inline: 0;
    display: grid;
    justify-items: center;
    gap: 8px;
    z-index: 2200;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    background: rgba(0,0,0,.75);
    color: #fff;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0 12px 36px rgba(0,0,0,.45);
}

.toast.ok {
    border-color: rgba(80,255,160,.4);
}

.toast.err {
    border-color: rgba(255,120,120,.45);
}

/* OTP Modal */
.otp-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: none;
    place-items: center;
    z-index: 2300;
}

    .otp-modal[aria-hidden="false"] {
        display: grid;
    }

.otp-card {
    width: min(420px, 92vw);
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.2));
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 16px;
    padding: 16px;
    position: relative;
    color: #fff;
}

.otp-close {
    position: absolute;
    inset: 8px 10px auto auto;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.06);
    color: #fff;
    cursor: pointer;
}

.otp-grid {
    display: flex;
    gap: 8px;
    margin: 12px 0;
    justify-content: center;
}

.otp-grid input {
    width: 44px;
    height: 50px;
    text-align: center;
    font-size: 1.3rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(0,0,0,.35);
    color: #fff;
}

.otp-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

/* RTL */
html[dir="rtl"] .iconed img {
    margin-inline-start: 8px;
    margin-inline-end: 0;
}

html[dir="rtl"] .row-split {
    flex-direction: row-reverse;
}

html[dir="rtl"] .sep::before, html[dir="rtl"] .sep::after {
    content: "";
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .btn-primary, .field input, .toast, .otp-card {
        transition: none !important;
        animation: none !important;
    }
}


/* ============ SERVICES LIST PAGE ============ */
.svc-list-page {
    background: var(--secondary);
    color: #fff
}

    .svc-list-page .container {
        max-width: 1160px;
        margin-inline: auto;
        padding-inline: 18px
    }

/* controls */
.svc-controls {
    display: grid;
    gap: 12px;
    padding-block: clamp(14px,3vw,22px)
}

.svc-controls .filters {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(12,1fr);
    align-items: end;
    background: linear-gradient(180deg,rgba(255,255,255,.05),rgba(0,0,0,.10));
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 12px
}

.svc-controls .field {
    display: grid;
    gap: 6px;
    grid-column: span 3
}

.svc-controls label {
    font-weight: 700;
    font-size: .92rem;
    color: rgba(255,255,255,.85)
}

.svc-controls input[type="search"], .svc-controls select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(0,0,0,.25);
    color: #fff;
    outline: none
}

#svcApply {
    grid-column: span 3;
    justify-self: end
}

@media(max-width:900px) {
    .svc-controls .field {
        grid-column: span 6
    }

    #svcApply {
        grid-column: span 12;
        justify-self: stretch
    }
}

/* tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.tags .tag {
    display: inline-flex;
    align-items: center;
    gap: .5ch;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    cursor: pointer
}

.tags .tag.active {
    background: var(--primary);
    border-color: transparent
}

/* featured */
.svc-featured {
    margin-block: clamp(10px,3vw,18px)
}

.feature-card {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(12,1fr);
    align-items: center;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg,rgba(255,255,255,.05),rgba(0,0,0,.10));
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 18px 60px rgba(0,0,0,.45)
}

.feature-card .img {
    grid-column: span 6;
    aspect-ratio: 16/9;
    overflow: hidden
}

.feature-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.feature-card .body {
    grid-column: span 6;
    padding: 16px;
    display: grid;
    gap: 8px
}

.feature-card .title {
    font-weight: 800;
    font-size: clamp(1.2rem,1rem + 1vw,1.6rem);
    margin: 0
}

.feature-card .excerpt {
    color: var(--muted);
    margin: 0
}

.feature-card .actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.feature-card .disabled {
    pointer-events: none;
    opacity: .55
}

@media(max-width:900px) {
    .feature-card .img, .feature-card .body {
        grid-column: 1/-1
    }
}

/* grid */
.svc-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    margin-block: clamp(12px,3vw,20px)
}

.svc-card {
    position: relative;
    display: grid;
    gap: 10px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg,rgba(255,255,255,.05),rgba(0,0,0,.12));
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 14px 36px rgba(0,0,0,.4)
}

.svc-card .thumb {
    position: relative;
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden
}

.svc-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease
}

.svc-card:hover .thumb img {
    transform: scale(1.04)
}

.svc-card .tier {
    position: absolute;
    inset: auto 10px 10px auto;
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    color: #fff;
    padding: .25rem .6rem;
    font-weight: 800;
    font-size: .8rem
}

.svc-card .body {
    padding: 12px;
    display: grid;
    gap: 6px
}

.svc-card .title {
    margin: 0;
    font-weight: 800;
    font-size: 1.06rem
}

.svc-card .title a {
    color: #fff;
    text-decoration: none
}

.svc-card .desc {
    color: var(--muted);
    margin: 0
}

.svc-card .badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap
}

.svc-card .badge {
    font-size: .78rem;
    padding: 5px 9px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06)
}

.svc-card .meta {
    color: var(--muted);
    font-size: .86rem;
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.svc-card .card-actions {
    display: flex;
    gap: 8px;
    align-items: center
}

/* skeletons */
.skel {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,.06);
    min-height: 160px;
    border-radius: 12px
}

.skel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.08) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    animation: skel 1.2s infinite
}

@keyframes skel {
    to {
        transform: translateX(100%)
    }
}

/* pagination & state */
.svc-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-block: 8px 16px
}

    .svc-pagination .btn-outline:disabled {
        opacity: .5;
        cursor: not-allowed
    }

.svc-state {
    text-align: center;
    padding: 18px;
    border: 1px dashed rgba(255,255,255,.25);
    border-radius: 12px;
    margin-block: 10px 24px
}

/* rtl polish (mostly logical already) */
html[dir="rtl"] .feature-card .actions,
html[dir="rtl"] .svc-card .meta,
html[dir="rtl"] .svc-card .card-actions {
    flex-direction: row-reverse
}

/* ================== */
/* ===== Footer ===== */
/* ================== */
.smv-footer {
    background: var(--secondary);
    color: #fff;
    position: relative;
    padding: clamp(42px, 5vw, 70px) 5px 22px;
}

.smv-footer .container {
    max-width: 1180px;
    margin-inline: auto;
}

.footer-top {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0,1.3fr) repeat(3, minmax(0,1fr)) minmax(0,1.2fr);
}

@media (max-width:1080px) {
    .footer-top {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width:640px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center !important;
        align-items: center !important;
    }
}

@media (max-width:380px) {
    .f-col {
        max-width: 300px;
    }
}
    .f-col {
        background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.10));
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 14px;
        padding: 16px 12px 14px;
        box-shadow: 0 14px 40px rgba(0,0,0,.45);
    }

        .f-col h4 {
            margin: 0 0 10px;
            font-weight: 800;
            color: var(--primary);
            font-size: 1.3rem;
        }

    .f-logo img {
        height: 210px;
        width: 100%;
        display: block;
        margin-bottom: 10px;
    }

    .f-about {
        margin: 0 0 12px;
        color: rgba(255,255,255,.78);
        font-size: 1rem;
    }

    .f-social {
        display: flex;
        gap: 8px;
    }

        .f-social a {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            border-radius: 10px;
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.1);
            transition: transform .18s ease, background .18s ease;
            text-decoration: none;
            color: var(--primary) !important;
        }

            .f-social a:hover {
                transform: translateY(-2px);
                background: rgba(255,255,255,.12);
            }

    .f-links ul, .f-services ul, .f-blog ul, .f-contact-list {
        list-style: none;
        margin: 0;
        padding: 0;
        text-decoration: none;
        color: inherit;
    }



        .f-contact-list li,
        .f-links li,
        .f-services li {
            margin: 8px 0;
        }

        .f-contact-list a,
        .f-links a,
        .f-services a {
            color: #fff !important;
            text-decoration: none !important;
            opacity: .9;
            transition: opacity .2s ease, text-decoration-color .2s ease;
            border-bottom: 1px dashed transparent;
        }

        .f-contact-list a {
            font-weight: 700;
            font-size: .9rem;
            direction: ltr;
        }

    .f-links a:hover, .f-services a:hover {
        opacity: 1;
        border-bottom-color: rgba(255,255,255,.4);
    }

    .f-blog ul li {
        margin: 8px 0;
    }

    .f-blog a {
        color: #fff;
        text-decoration: none;
        border-bottom: 1px dashed rgba(255,255,255,.25);
    }

        .f-blog a:hover {
            border-bottom-color: #fff;
        }

    .f-blog .meta {
        color: rgba(255,255,255,.6);
        font-size: .86rem;
    }

    .skeleton {
        height: 48px;
        border-radius: 8px;
        background: linear-gradient(90deg, #202124, #2a2b2d, #202124);
        background-size: 200% 100%;
        animation: sk 1.4s linear infinite;
        margin: 8px 0;
    }

    @keyframes sk {
        0% {
            background-position: 0 0;
        }

        100% {
            background-position: 200% 0;
        }
    }



    .f-contact-list li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        margin: 8px 0;
    }

    .f-contact-list i {
        color: var(--primary);
        margin-top: 2px;
    }

    .f-newsletter label {
        display: block;
        margin: 8px 0 6px;
        color: #fff;
    }

    .nl-row {
        display: flex;
        gap: 8px;
    }

        .nl-row input {
            flex: 1;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,.16);
            background: #1f2022;
            color: #fff;
            padding: 10px 12px;
            font-size: .95rem;
        }

        .nl-row .btn-primary {
            border: 0;
            border-radius: 10px;
            padding: 10px 14px;
            font-weight: 800;
            color: #fff;
            background: linear-gradient(135deg, var(--primary), #8a0f22);
            cursor: pointer;
        }

    .nl-hint {
        display: block;
        color: rgba(255,255,255,.6);
        margin-top: 6px;
        font-size: .85rem;
    }

    /* Bottom bar */
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        margin-top: clamp(18px,3vw,26px);
        border-top: 1px solid rgba(255,255,255,.08);
        padding-top: 14px;
    }

    .legal {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        align-items: center;
    }

    .copy {
        margin: 0;
        color: rgba(255,255,255,.7);
    }

    .legal-links a {
        color: #fff !important;
        opacity: .75;
        margin-right: 10px;
        text-decoration: none;
    }

        .legal-links a:hover {
            opacity: 1;
            text-decoration: underline;
        }

    .made {
        color: rgba(255,255,255,.7);
    }


    /* =Quick Action CTA= */
    /* ================== */


    a {
        color: inherit
    }


    /* ---------- Quick Actions ---------- */
    .qa-launcher {
        position: fixed;
        inset-inline-start: 18px;
        inset-block-end: 18px;
        z-index: 50;
    }

    .qa-fab {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: radial-gradient(120% 120% at 30% 30%, var(--primary) 0%, #a30e0e80 60%, #212529 100%);
        color: #fff;
        border: none;
        box-shadow: 0 10px 24px rgba(0,0,0,.35);
        display: grid;
        place-items: center;
        position: relative;
        transition: transform .2s ease, box-shadow .2s ease;
    }

        .qa-fab:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 26px rgba(0,0,0,.42);
        }

    .qa-fab-ico {
        display: inline-grid;
        place-items: center;
    }

    /* New CTA icon (replaces .ico-phone) */
    .ico-cta {
        width: 28px;
        height: 28px;
        display: block;
        color: currentColor;
    }

    .cta-ripple {
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        opacity: 0;
        transform-origin: 24px 24px;
    }

    @keyframes cta-ripple-wave {
        0% {
            opacity: .38;
            transform: scale(.65)
        }

        70% {
            opacity: 0;
            transform: scale(1.2)
        }

        100% {
            opacity: 0;
            transform: scale(1.2)
        }
    }

    .rip-1 {
        animation: cta-ripple-wave 1.8s ease-out infinite;
    }

    .rip-2 {
        animation: cta-ripple-wave 1.8s ease-out .45s infinite;
    }

    .cta-mark {
        transform-origin: 24px 24px;
    }

    @keyframes cta-breathe {
        0%,100% {
            transform: translateY(0) scale(1)
        }

        50% {
            transform: translateY(-0.6px) scale(1.02)
        }
    }

    .cta-mark {
        animation: cta-breathe 2.2s ease-in-out infinite;
    }

    .cta-bolt {
        fill: #fff;
        stroke: currentColor;
        stroke-width: .6;
        paint-order: stroke fill;
    }

    @media (prefers-reduced-motion: reduce) {
        .rip-1, .rip-2, .cta-mark {
            animation: none !important;
        }
    }

    .qa-fab.is-open .ico-cta .rip-1,
    .qa-fab.is-open .ico-cta .rip-2,
    .qa-fab.is-open .ico-cta .cta-mark {
        animation-play-state: paused;
    }

    /* sheet */
    .qa-sheet {
        position: fixed;
        inset-inline-start: 18px;
        inset-inline-end: auto;
        inset-block-end: 96px;
        background: var(--panel);
        border: 1px solid #242a31;
        border-radius: 16px;
        padding: 10px;
        box-shadow: var(--shadow);
        opacity: 0;
        transform: translateY(12px) scale(.98);
        pointer-events: none;
        transition: .18s ease;
        min-width: 180px;
    }

        .qa-sheet.show {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }

    .qa-act {
        width: 100%;
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
        background: transparent;
        color: #eaf2f7;
        border: 0;
        padding: 10px 12px;
        border-radius: 10px;
        transition: background .15s ease;
    }

        .qa-act .ico {
            width: 24px;
            text-align: center;
        }

        .qa-act:hover, .qa-act:focus {
            background: #1f242a;
            outline: 2px solid transparent;
        }

    /* ---------- Modal ---------- */
    .mf-modal {
        position: fixed;
        inset: 0;
        display: grid;
        place-items: center;
        z-index: 60;
    }

        .mf-modal[aria-hidden="true"] {
            visibility: hidden;
        }

    .mf-modal__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.55);
        backdrop-filter: blur(3px);
        opacity: 0;
        transition: .2s;
    }

    .mf-modal.is-open .mf-modal__backdrop {
        opacity: 1;
    }

    .mf-modal__panel {
        position: relative;
        max-width: 860px;
        width: min(83vw, 860px);
        height: 670px;
        max-height: 96vh;
        overflow: auto;
        border-radius: 18px;
        background: linear-gradient(180deg, #121519, #0f1215);
        border: 1px solid #242a31;
        box-shadow: var(--shadow);
        transform: translateY(10px) scale(.98);
        opacity: 0;
        transition: .22s ease;
    }

    .mf-modal.is-open .mf-modal__panel {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    .mf-modal__close {
        position: absolute;
        inset-inline-end: 10px;
        inset-block-start: 10px;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        border: 1px solid #2a3139;
        background: #171b1f;
        color: #fff;
        font-size: 22px;
        cursor: pointer;
    }

    /* ---------- Move Form ---------- */
    .smv-moveform .mf-head {
        padding: 22px 24px 6px;
    }

    .skv-moveform #mf-title {
        margin: 0 0 6px;
        font-size: clamp(20px,2.6vw,28px)
    }

    .smv-moveform #mf-title {
        margin: 0 0 6px;
        font-size: clamp(20px,2.6vw,28px)
    }

    .smv-moveform #mf-sub {
        margin: 0;
        color: var(--muted);
    }

    .smv-moveform .mf-progress {
        position: relative;
        height: 6px;
        background: #1a1f25;
        border-radius: 6px;
        margin: 16px 0 4px;
        overflow: hidden;
    }

        .smv-moveform .mf-progress .bar {
            position: absolute;
            inset: 0 0 0 auto;
            width: 33%;
            background: linear-gradient(90deg,var(--accent),var(--primary));
            border-radius: 6px;
            transition: width .25s ease;
        }

        .smv-moveform .mf-progress .dots {
            display: flex;
            gap: 10px;
            margin-block: 10px;
        }

        .smv-moveform .mf-progress .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #2a3139;
            transition: .2s;
        }

            .smv-moveform .mf-progress .dot.is-active {
                background: var(--accent);
            }

    .smv-moveform .mf-steps {
        padding: 6px 24px 12px;
    }

    .smv-moveform .mf-step {
        display: none;
        animation: step .22s ease;
    }

        .smv-moveform .mf-step.is-current {
            display: block;
        }

    @keyframes step {
        from {
            opacity: 0;
            transform: translateY(4px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    .smv-moveform .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin: 10px 0;
    }

    .smv-moveform .lbl {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

        .smv-moveform .lbl > span {
            color: #b6c0c9;
            font-size: .92rem;
        }

    .smv-moveform .input {
        border: 1px solid #242a31;
        background: #111418;
        color: #e9eef3;
        border-radius: 12px;
        padding: 12px 12px;
        min-height: 44px;
    }

        .smv-moveform .input:focus {
            outline: 2px solid #284a44;
            border-color: #2f4b45;
        }

    .smv-moveform .err {
        min-height: 14px;
        color: #ef476f;
        font-size: .8rem;
    }

    .smv-moveform .chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 12px;
    }

        .smv-moveform .chips .chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 999px;
            border: 1px solid #2a3139;
            background: #12161a;
        }

            .smv-moveform .chips .chip input {
                accent-color: var(--primary);
            }

    .smv-moveform .mf-summary {
        margin-top: 14px;
        border: 1px dashed #2a3139;
        border-radius: 12px;
        padding: 12px;
        color: #c9d3db;
    }

        .smv-moveform .mf-summary strong {
            color: #eaf2f7;
        }

    .smv-moveform .mf-ctrls {
        display: flex;
        gap: 10px;
        justify-content: flex-end;
        border-top: 1px solid #1a1f25;
        padding: 14px 24px;
    }

    .smv-moveform .mf-done[aria-hidden="true"] {
        display: none;
    }

    .smv-moveform .mf-done {
        position: absolute;
        inset: 0;
        display: grid;
        place-content: center;
        background: rgba(0,0,0,.45);
        backdrop-filter: blur(2px);
    }

        .smv-moveform .mf-done .tick {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: #0ea37f;
            color: #fff;
            font-size: 28px;
            margin: 0 auto 12px;
        }

    /* RTL tweaks */
    html[dir="rtl"] .qa-sheet {
        inset-inline-start: auto;
        inset-inline-end: 18px;
    }

    html[dir="rtl"] .qa-launcher {
        inset-inline-end: 18px;
        inset-inline-start: auto;
    }

    html[dir="rtl"] .mf-modal__close {
        inset-inline-start: 10px;
        inset-inline-end: auto;
    }

    @media (max-width:720px) {
        .smv-moveform .row {
            grid-template-columns: 1fr;
        }
    }

    /* =========================
   BIGGER CTA FAB + ICON
   (keeps animations GPU-friendly)
   ========================= */
    .qa-fab {
        width: 56px; /* was 42px */
        height: 56px; /* was 42px */
        box-shadow: 0 14px 30px rgba(0,0,0,.40);
    }

    /* bigger SVG */
    .ico-cta {
        width: 40px; /* was 28px */
        height: 40px; /* was 28px */
    }

    /* make ripples + breathe slightly stronger but still subtle */
    .cta-ripple {
        stroke-width: 2.5; /* was 2 */
    }

    @keyframes cta-ripple-wave {
        0% {
            opacity: .45;
            transform: scale(.60);
        }

        70% {
            opacity: 0;
            transform: scale(1.35);
        }

        100% {
            opacity: 0;
            transform: scale(1.35);
        }
    }

    @keyframes cta-breathe {
        0%,100% {
            transform: translateY(0) scale(1);
        }

        50% {
            transform: translateY(-1px) scale(1.04);
        }
        /* slightly more */
    }

    /* optional: a very soft halo to attract attention (transform/opacity only) */
    .qa-fab::after {
        content: "";
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        background: radial-gradient(60% 60% at 50% 50%, rgba(255,255,255,.14), rgba(255,255,255,0) 70%);
        opacity: .0;
        pointer-events: none;
        transform: scale(.9);
        animation: fab-halo 2.4s ease-in-out infinite;
    }

    @keyframes fab-halo {
        0%,100% {
            opacity: .0;
            transform: scale(.9);
        }

        40% {
            opacity: .25;
            transform: scale(1.02);
        }
    }

    /* pause attention animations when sheet is open */
    .qa-fab.is-open .ico-cta .rip-1,
    .qa-fab.is-open .ico-cta .rip-2,
    .qa-fab.is-open .ico-cta .cta-mark,
    .qa-fab.is-open::after {
        animation-play-state: paused;
    }

    /* respect reduced motion */
    @media (prefers-reduced-motion: reduce) {
        .rip-1, .rip-2, .cta-mark, .qa-fab::after {
            animation: none !important;
        }
    }

    /* small screens: keep it big but not overwhelming */
    @media (max-width: 480px) {
        .qa-fab {
            width: 52px;
            height: 52px;
        }

        .ico-cta {
            width: 36px;
            height: 36px;
        }
    }

    /* Back to top */
    .back-to-top {
        position: fixed;
        right: 18px;
        bottom: 18px;
        z-index: 1200;
        width: 42px;
        height: 42px;
        border: 0;
        border-radius: 12px;
        display: grid;
        place-items: center;
        color: #fff;
        background: var(--primary);
        box-shadow: 0 10px 28px rgba(0,0,0,.5);
        opacity: 0;
        transform: translateY(10px);
        pointer-events: none;
        transition: opacity .25s ease, transform .25s ease;
    }

        .back-to-top.show {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .back-to-top svg {
            width: 22px;
            height: 22px;
        }

    /* Language visibility toggled by JS */
    .en {
        display: none;
    }

    .ar {
        display: none;
    }

    /* RTL tweaks */
    html[dir="rtl"] .f-contact-list li {
        justify-content: start;
    }

    html[dir="rtl"] .f-contact-list i {
        margin: 2px 0 0 10px;
    }

    html[dir="rtl"] .legal {
        justify-content: center;
    }

    html[dir="rtl"] .legal-links a {
        margin: 0 0 0 10px;
    }
    /* Animation Keyframes */

    /* Glow Pulse Animation */
    @keyframes glowPulse {
        0% {
            box-shadow: 0 12px 30px rgba(35, 31, 32, 0.15);
        }

        50% {
            box-shadow: 0 14px 35px rgba(35, 31, 32, 0.25);
        }

        100% {
            box-shadow: 0 12px 30px rgba(35, 31, 32, 0.15);
        }
    }

    @keyframes fadeUpScale {
        0% {
            opacity: 0;
            transform: translateY(40px) scale(0.95);
        }

        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    @keyframes fadeDownScale {
        0% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        100% {
            opacity: 0;
            transform: translateY(40px) scale(0.95);
        }
    }

    /* base state (your original, but variable-driven) */
    /* Base transition for all */
    [data-animate] {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: opacity, transform;
    }

        [data-animate].animated-in {
            opacity: 1;
            transform: none;
        }

        [data-animate].animated-out {
            opacity: 0;
        }

    /* === Fade-Up === */
    [data-animate*="fade-up"].animated-in {
        transform: translateY(0) scale(1);
    }

    [data-animate*="fade-up"].animated-out {
        transform: translateY(40px) scale(0.95);
    }

    /* === Zoom-In === */
    [data-animate*="zoom-in"].animated-in {
        transform: scale(1);
    }

    [data-animate*="zoom-in"].animated-out {
        transform: scale(0.85);
    }

    /* === Flip-Up === */
    [data-animate*="flip-up"] {
        transform-origin: bottom;
    }

        [data-animate*="flip-up"].animated-in {
            transform: rotateX(0deg);
        }

        [data-animate*="flip-up"].animated-out {
            transform: rotateX(90deg);
        }

    /* === Brand Underline (headline accent) === */
    [data-animate*="brand-underline"] {
        position: relative;
    }

        [data-animate*="brand-underline"].animated-in::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary);
            transform: scaleX(1);
            transform-origin: left;
            transition: transform 0.6s ease;
        }

        [data-animate*="brand-underline"].animated-out::after {
            transform: scaleX(0);
        }

