/* ==============================
   DESIGN TOKENS — RAFEDEEN BRAND
   ============================== */
:root {
    --rp-900: #0D1F2D;
    --rp-800: #0c6f6c;
    --rp-700: #0F8B88;
    --rp-600: #12a19d;
    --rp-500: #3aa8a5;
    --rp-400: #7fc9c6;
    --rp-300: #b5dedc;
    --rp-200: #dfe5e8;
    --rp-100: #E8ECEF;
    --rp-50: #f8f9fb;

    /* teal accent — brand green (#0F8B88) */
    --rt-700: #0a5f5d;
    --rt-600: #0c6f6c;
    --rt-500: #0F8B88;
    --rt-400: #3aa8a5;
    --rt-300: #7fc9c6;

    --rg-900: #111927;
    --rg-800: #1f2737;
    --rg-700: #374051;
    --rg-500: #6b7280;
    --rg-300: #d1d5db;
    --rg-100: #f3f4f6;
    --rg-50: #f9fafb;

    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.09);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
    --shadow-pp: 0 8px 32px rgba(58, 168, 165, 0.28);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 36px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --tx: all 0.32s var(--ease);
    --tx-slow: all 0.6s var(--ease);
}

/* ==============================
   GLOBAL RESETS FOR HOME PAGE
   ============================== */
.hp *,
.hp *::before,
.hp *::after {
    box-sizing: border-box;
}
.hp {
    font-family: "Tajawal", sans-serif;
    color: var(--rg-800);
    overflow-x: hidden;
}
.hp a {
    text-decoration: none;
    color: inherit;
}
.hp ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hp p {
    margin: 0;
}
.hp h1,
.hp h2,
.hp h3,
.hp h4,
.hp h5 {
    margin: 0;
}
.hp img {
    max-width: 100%;
}

/* ==============================
   SHARED UTILITIES
   ============================== */
/* ── Section header — eyebrow lines · marker-highlighted title · spark · subtitle rule ── */
@keyframes shSpark {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
    50%      { transform: scale(1.35) rotate(25deg); opacity: 0.45; }
}
.hp .sh-head {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}
/* eyebrow: icon chip + label between two fading lines */
.hp .sh-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: 0;
    padding: 0;
    color: #0F8B88;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}
.hp .sh-badge::before,
.hp .sh-badge::after {
    content: "";
    width: 38px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, #0F8B88);
}
.hp .sh-badge::after {
    background: linear-gradient(90deg, #0F8B88, transparent);
}
.hp .sh-badge i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    color: #0F8B88;
    background: rgba(15, 139, 136, 0.1);
    box-shadow: 0 0 0 4px rgba(15, 139, 136, 0.06);
}
/* title with a skewed marker highlight under its first half and a twinkling spark */
.hp .sh-title {
    position: relative;
    z-index: 0;
    display: inline-block;
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 900;
    color: #0D1F2D;
    line-height: 1.25;
    margin: 0 0 18px;
    padding: 0 12px;
    text-wrap: balance;
}
.hp .sh-title::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset-inline-start: 0;
    bottom: 0.06em;
    width: 48%;
    height: 0.38em;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(94, 212, 208, 0.6), rgba(15, 139, 136, 0.26));
    transform: skewX(-12deg);
}
.hp .sh-head .sh-title::after {
    content: "";
    position: absolute;
    top: -12px;
    inset-inline-end: -14px;
    left: auto;
    bottom: auto;
    width: 20px;
    height: 20px;
    border-radius: 0;
    background: #5ed4d0;
    clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
    animation: shSpark 2.6s ease-in-out infinite;
}
.hp .sh-title .accent { color: #0F8B88; }
.hp .sh-sub {
    position: relative;
    font-size: 1.02rem;
    color: #5b6b73;
    line-height: 1.9;
    max-width: 620px;
    margin: 0 auto;
    padding-top: 16px;
}
.hp .sh-sub::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #0D1F2D, #0F8B88);
}
/* start-aligned variant (about) */
.hp .sh-head--start {
    align-items: flex-start;
    text-align: start;
}
.hp .sh-head--start .sh-title { padding-inline-start: 0; }
.hp .sh-head--start .sh-sub { margin: 0; }
.hp .sh-head--start .sh-sub::before {
    left: auto;
    inset-inline-start: 0;
    transform: none;
}
/* dark-background variant */
.hp .sh-head--dark .sh-badge { color: #5ed4d0; }
.hp .sh-head--dark .sh-badge::before { background: linear-gradient(90deg, transparent, #5ed4d0); }
.hp .sh-head--dark .sh-badge::after { background: linear-gradient(90deg, #5ed4d0, transparent); }
.hp .sh-head--dark .sh-badge i {
    color: #5ed4d0;
    background: rgba(94, 212, 208, 0.14);
    box-shadow: 0 0 0 4px rgba(94, 212, 208, 0.08);
}
.hp .sh-head--dark .sh-title { color: #fff; }
.hp .sh-head--dark .sh-title::before {
    background: linear-gradient(90deg, rgba(94, 212, 208, 0.45), rgba(15, 139, 136, 0.28));
}
.hp .sh-head--dark .sh-sub { color: rgba(255, 255, 255, 0.76); }
.hp .sh-head--dark .sh-sub::before { background: linear-gradient(90deg, #ffffff, #5ed4d0); }
@media (max-width: 767px) {
    .hp .sh-head { margin-bottom: 40px; }
    .hp .sh-badge::before, .hp .sh-badge::after { width: 24px; }
    .hp .sh-head .sh-title::after { width: 14px; height: 14px; top: -8px; inset-inline-end: -6px; }
}

.hp .btn-pp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--rt-600), var(--rt-500));
    color: #fff;
    font-size: 0.96rem;
    font-weight: 800;
    font-family: "Tajawal", sans-serif;
    padding: 14px 30px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--tx);
    box-shadow: 0 8px 32px rgba(15, 139, 136, 0.28);
}
.hp .btn-pp:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(15, 139, 136, 0.42);
    color: #fff;
}

.hp .btn-out {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--rp-700);
    font-size: 0.96rem;
    font-weight: 800;
    font-family: "Tajawal", sans-serif;
    padding: 13px 30px;
    border-radius: var(--radius-md);
    border: 2px solid var(--rp-400);
    cursor: pointer;
    transition: var(--tx);
}
.hp .btn-out:hover {
    background: var(--rp-700);
    color: #fff;
    border-color: var(--rp-700);
    transform: translateY(-3px);
}

/* Fade-up scroll animation */
.hp .fu {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.7s var(--ease),
        transform 0.7s var(--ease);
}
.hp .fu.vis {
    opacity: 1;
    transform: translateY(0);
}
.hp .fu:nth-child(1) {
    transition-delay: 0.05s;
}
.hp .fu:nth-child(2) {
    transition-delay: 0.13s;
}
.hp .fu:nth-child(3) {
    transition-delay: 0.21s;
}
.hp .fu:nth-child(4) {
    transition-delay: 0.29s;
}
.hp .fu:nth-child(5) {
    transition-delay: 0.37s;
}
.hp .fu:nth-child(6) {
    transition-delay: 0.45s;
}

/* ==============================
   1. HERO SECTION
   ============================== */
.hp-hero {
    position: relative;
    overflow: hidden;
}
/* ── Swiper Hero ── */
.heroMainSwiper {
    height: 100svh;
    min-height: 600px;
}
.heroMainSwiper .swiper-slide {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.hp-hero__slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hp-hero__slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Nav arrows */
.hp-hero-nav-next,
.hp-hero-nav-prev {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    transition: background 0.3s;
}
.hp-hero-nav-next::after,
.hp-hero-nav-prev::after {
    font-size: 18px !important;
    font-weight: 700;
}
.hp-hero-nav-next:hover,
.hp-hero-nav-prev:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}
/* Pagination */
.hp-hero-pagination {
    bottom: 22px !important;
}
.hp-hero-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.55) !important;
    opacity: 1;
    transition: all 0.3s;
}
.hp-hero-pagination .swiper-pagination-bullet-active {
    background: #fff !important;
    width: 28px;
    border-radius: 4px;
}
.hp-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(13, 31, 45, 0.93) 0%,
        rgba(15, 139, 136, 0.86) 40%,
        rgba(58, 168, 165, 0.78) 70%,
        rgba(13, 31, 45, 0.9) 100%
    );
}

/* ── Hero Body ── */
.hp-hero__body {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 24px 70px;
}
.hp-hero__text {
    /* text-align: center; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    align-items: center;
    max-width: 820px;
    animation: heroIn 0.9s var(--ease) both;
}
@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hp-hero__live-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 7px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    margin-bottom: 26px;
}
.hp-hero__live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #52d6b1;
    animation: livePulse 1.6s ease infinite;
}
@keyframes livePulse {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(82, 214, 177, 0.5);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 6px rgba(82, 214, 177, 0);
    }
}

.hp-hero__h1 {
    font-size: clamp(2rem, 6vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
    text-align: center;
}
.hp-hero__h1 .glow {
    background: linear-gradient(135deg, #e1e6ee, #b5dedc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hp-hero__sub {
    font-size: clamp(1rem, 2.4vw, 1.15rem);
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.85;
    margin-bottom: 38px;
    max-width: 620px;
    margin-inline: auto;
    text-align: center;
}
.hp-hero__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 75px;
}

/* ── Base hero button ── */
.hp-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.97rem;
    font-weight: 800;
    font-family: "Tajawal", sans-serif;
    padding: 13px 26px;
    border-radius: var(--radius-md);
    transition: var(--tx);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}
.hp-hero__btn-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: var(--tx);
}
.hp-hero__btn-lbl {
    line-height: 1;
}

/* ── White (استقدام) ── */
.hp-hero__btn--white {
    background: #fff;
    color: var(--rp-800);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}
.hp-hero__btn--white .hp-hero__btn-ico {
    background: var(--rp-100);
    color: var(--rp-700);
}
.hp-hero__btn--white:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
    color: var(--rp-800);
}

/* ── Orange (إيجار) ── */
.hp-hero__btn--orange {
    background: linear-gradient(135deg, #3dd2a8, #7fc9c6);
    color: #fff;
    box-shadow: 0 8px 32px rgba(61, 210, 168, 0.4);
}
.hp-hero__btn--orange .hp-hero__btn-ico {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}
.hp-hero__btn--orange:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(61, 210, 168, 0.55);
    color: #fff;
}

/* ── Glass (نقل خدمات) ── */
.hp-hero__btn--glass {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.36);
}
.hp-hero__btn--glass .hp-hero__btn-ico {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}
.hp-hero__btn--glass:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-4px);
    color: #fff;
}

@media (max-width: 600px) {
    .hp-hero__actions {
        gap: 10px;
    }
    .hp-hero__btn {
        padding: 11px 18px;
        font-size: 0.88rem;
    }
    .hp-hero__btn-ico {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* ── Hero Stats Bar ── */
.hp-hero__statsbar {
    position: relative; z-index: 3;
    background: linear-gradient(135deg, var(--rp-900) 0%, var(--rp-700) 100%);
    padding: 0;
}
.hp-hero__stats-row {
    display: flex; max-width: 100%; margin: 0; padding: 0;
}
.hp-hero__stat {
    flex: 1; text-align: center; padding: 26px 16px;
    border-inline-end: 1px solid rgba(255, 255, 255,.14);
    transition: background .25s;
}
.hp-hero__stat:hover { background: rgba(255, 255, 255,.08); }
.hp-hero__stat:last-child { border-inline-end: none; }
.hp-hero__stat strong {
    display: block; font-size: 1.9rem; font-weight: 900;
    color: #fff; line-height: 1; margin-bottom: 6px;
    letter-spacing: -.01em;
}
.hp-hero__stat span {
    font-size: .78rem; color: rgba(255, 255, 255,.72); font-weight: 600;
    letter-spacing: .02em; text-transform: uppercase;
}

/* ── Hero Partners Strip ── */
.hp-hero__partners {
    position: relative; z-index: 3;
    background: var(--rp-50);
    border-top: 1px solid var(--rp-100); padding: 16px 0;
}
.hp-hero__partners .swiper-slide {
    display: flex; justify-content: center; align-items: center;
}
.hp-hero__partners .rfl-logo img {
    height: 36px; width: auto; object-fit: contain;
    opacity: .5; filter: grayscale(100%);
    transition: opacity .3s, filter .3s;
}
.hp-hero__partners .rfl-logo img:hover {
    opacity: 1; filter: grayscale(0%);
}

/* ==============================
   2. SERVICES — content cards; photo curtain slides in from the right on hover
   ============================== */
.hp-svc {
    position: relative;
    padding: 100px 0;
    background: #fff;
}
.hp-svc__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}
.hp-svc-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 460px;
    padding: 32px 30px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #E8ECEF;
    box-shadow: 0 10px 30px rgba(13, 31, 45, 0.05);
    color: #0D1F2D;
    text-decoration: none;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}
.hp-svc-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 34px 60px -22px rgba(13, 31, 45, 0.5);
}
/* the photo: clipped away to the left, revealed from the right edge */
.hp-svc-card__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--svc-img) center / cover no-repeat;
    opacity: 0;
    transform: translateX(16%) scale(1.14);
    clip-path: inset(0 0 0 100%);
    transition:
        clip-path 0.85s cubic-bezier(0.77, 0, 0.18, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease;
}
.hp-svc-card:hover .hp-svc-card__bg {
    opacity: 1;
    transform: translateX(0) scale(1.03);
    clip-path: inset(0 0 0 0);
}
/* dark tint so the copy stays readable over the photo */
.hp-svc-card__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(200deg, rgba(13, 31, 45, 0.5) 0%, rgba(13, 31, 45, 0.86) 55%, rgba(12, 111, 108, 0.92) 100%);
    opacity: 0;
    transition: opacity 0.55s ease 0.12s;
}
.hp-svc-card:hover .hp-svc-card__shade { opacity: 1; }
.hp-svc-card__body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
}
.hp-svc-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}
.hp-svc-card__ico {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 24px;
    color: #0F8B88;
    background: rgba(15, 139, 136, 0.1);
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hp-svc-card:hover .hp-svc-card__ico {
    background: #0F8B88;
    color: #fff;
    transform: rotate(-8deg) scale(1.06);
    box-shadow: 0 12px 26px rgba(15, 139, 136, 0.45);
}
.hp-svc-card__num {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    color: #E8ECEF;
    transition: color 0.4s ease;
}
.hp-svc-card:hover .hp-svc-card__num { color: rgba(255, 255, 255, 0.18); }
.hp-svc-card__title {
    font-size: 1.32rem;
    font-weight: 800;
    margin: 0;
    color: #0D1F2D;
    transition: color 0.4s ease;
}
.hp-svc-card__desc {
    font-size: 0.96rem;
    line-height: 1.85;
    color: #5b6b73;
    margin: 0;
    transition: color 0.4s ease;
}
.hp-svc-card:hover .hp-svc-card__title { color: #fff; }
.hp-svc-card:hover .hp-svc-card__desc { color: rgba(255, 255, 255, 0.85); }
.hp-svc-card__points {
    list-style: none;
    margin: 4px 0 6px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.hp-svc-card__points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0D1F2D;
    transition: color 0.4s ease;
}
.hp-svc-card__points li i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.6rem;
    color: #0F8B88;
    background: rgba(15, 139, 136, 0.12);
    transition: all 0.4s ease;
}
.hp-svc-card:hover .hp-svc-card__points li { color: #fff; }
.hp-svc-card:hover .hp-svc-card__points li i { background: #5ed4d0; color: #0D1F2D; }
.hp-svc-card__cta {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 10px;
    background: #0D1F2D;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.4s ease;
}
.hp-svc-card__cta i { transition: transform 0.4s ease; }
.hp-svc-card:hover .hp-svc-card__cta {
    background: #0F8B88;
    box-shadow: 0 10px 24px rgba(15, 139, 136, 0.4);
}
.hp-svc-card:hover .hp-svc-card__cta i { transform: translateX(-4px); }
html[dir="ltr"] .hp-svc-card__cta i { transform: scaleX(-1); }
html[dir="ltr"] .hp-svc-card:hover .hp-svc-card__cta i { transform: scaleX(-1) translateX(-4px); }
@media (max-width: 991px) {
    .hp-svc { padding: 72px 0; }
    .hp-svc__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
    .hp-svc-card { min-height: 0; }
}
@media (max-width: 640px) {
    .hp-svc__grid { grid-template-columns: minmax(0, 1fr); }
    .hp-svc-card { padding: 26px 22px; }
}

/* ==============================
   LATEST CVS SECTIONS — circular photo cards (recruitment · rental)
   ============================== */
@keyframes hpRingSpin {
    to { transform: rotate(360deg); }
}
.hp-latest {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #f5f8f9;
}
.hp-latest--rental {
    background: #fff;
}
.hp-latest::before {
    content: "";
    position: absolute;
    top: -160px;
    inset-inline-end: -120px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 139, 136, 0.1), transparent 70%);
    pointer-events: none;
}
.hp-latest__slider-wrap {
    position: relative;
    padding: 0 8px;
}
.hpLatestSwiper {
    padding: 14px 6px 8px;
}
.hpLatestSwiper .swiper-slide {
    height: auto;
    display: flex;
}
/* card */
.hp-latest-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 22px 22px 20px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid #E8ECEF;
    box-shadow: 0 10px 30px rgba(13, 31, 45, 0.05);
    color: #0D1F2D;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}
.hp-latest-card::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 96px;
    background: linear-gradient(180deg, rgba(15, 139, 136, 0.1), rgba(15, 139, 136, 0));
    pointer-events: none;
}
.hp-latest-card:hover {
    transform: translateY(-8px);
    border-color: rgba(15, 139, 136, 0.35);
    box-shadow: 0 26px 50px -18px rgba(15, 139, 136, 0.35);
}
.hp-latest-card__top {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.hp-latest-card__code {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 800;
    color: #0D1F2D;
    background: #fff;
    border: 1px solid #E8ECEF;
    padding: 5px 10px;
    border-radius: 999px;
    direction: ltr;
}
.hp-latest-card__code i { color: #0F8B88; font-size: 0.65rem; }
.hp-latest-card__type {
    font-size: 0.72rem;
    font-weight: 800;
    color: #0F8B88;
    background: rgba(15, 139, 136, 0.12);
    padding: 5px 12px;
    border-radius: 999px;
}
.hp-latest--rental .hp-latest-card__type {
    color: #0c6f6c;
    background: rgba(94, 212, 208, 0.25);
}
/* circular avatar with a spinning gradient ring */
.hp-latest-card__avatar {
    position: relative;
    width: 132px;
    height: 132px;
    margin-bottom: 14px;
}
.hp-latest-card__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #0F8B88, #5ed4d0, #0D1F2D, #0F8B88);
    animation: hpRingSpin 9s linear infinite;
}
.hp-latest-card:hover .hp-latest-card__ring { animation-duration: 2.5s; }
.hp-latest-card__photo {
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    padding: 4px;
}
.hp-latest-card__photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hp-latest-card:hover .hp-latest-card__photo img { transform: scale(1.08); }
.hp-latest-card__verified {
    position: absolute;
    bottom: 6px;
    inset-inline-end: 6px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #0F8B88;
    color: #fff;
    font-size: 0.7rem;
    border: 3px solid #fff;
    box-shadow: 0 6px 14px rgba(15, 139, 136, 0.4);
}
.hp-latest-card__name {
    font-size: 1.12rem;
    font-weight: 800;
    margin: 0 0 4px;
    color: #0D1F2D;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hp-latest-card__job {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0F8B88;
    margin: 0 0 14px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hp-latest-card__meta {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}
.hp-latest-card__meta li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 12px;
    background: #f3f6f7;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0D1F2D;
    text-align: start;
    transition: background 0.3s ease;
}
.hp-latest-card:hover .hp-latest-card__meta li { background: rgba(15, 139, 136, 0.08); }
.hp-latest-card__meta i {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    color: #0F8B88;
    background: #fff;
    flex-shrink: 0;
}
.hp-latest-card__meta span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hp-latest-card__foot {
    width: 100%;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed #dfe5e8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.hp-latest-card__price {
    font-size: 1.15rem;
    font-weight: 900;
    color: #0D1F2D;
}
.hp-latest-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 10px;
    background: #0D1F2D;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.35s ease;
}
.hp-latest-card:hover .hp-latest-card__btn {
    background: #0F8B88;
    box-shadow: 0 10px 20px rgba(15, 139, 136, 0.35);
}
.hp-latest-card__btn i { transition: transform 0.35s ease; }
.hp-latest-card:hover .hp-latest-card__btn i { transform: translateX(-3px); }
html[dir="ltr"] .hp-latest-card__btn i { transform: scaleX(-1); }
html[dir="ltr"] .hp-latest-card:hover .hp-latest-card__btn i { transform: scaleX(-1) translateX(-3px); }
/* slider chrome */
.hp-latest-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 46px;
    height: 46px;
    margin-top: -23px;
    border-radius: 50%;
    border: 1px solid #E8ECEF;
    background: #fff;
    color: #0D1F2D;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(13, 31, 45, 0.12);
    transition: all 0.3s ease;
}
.hp-latest-nav:hover {
    background: #0F8B88;
    border-color: #0F8B88;
    color: #fff;
}
.hp-latest-nav.swiper-button-disabled { opacity: 0.35; pointer-events: none; }
.hp-latest-nav--next { inset-inline-end: -18px; }
.hp-latest-nav--prev { inset-inline-start: -18px; }
html[dir="ltr"] .hp-latest-nav i { transform: scaleX(-1); }
.hp-latest-pagination {
    position: static;
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 22px;
}
.hp-latest-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0;
    background: #c9d3d8;
    opacity: 1;
    transition: all 0.3s ease;
}
.hp-latest-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 5px;
    background: #0F8B88;
}
.hp-latest__more {
    text-align: center;
    margin-top: 34px;
}
.hp-latest__empty {
    text-align: center;
    padding: 40px 20px;
    color: #5b6b73;
}
.hp-latest__empty h3 { color: #0D1F2D; font-weight: 800; margin-bottom: 8px; }
.hp-latest__empty p { margin: 0; }
@media (max-width: 991px) {
    .hp-latest { padding: 72px 0; }
    .hp-latest-nav { display: none; }
}
@media (max-width: 767px) {
    .hp-latest-card { padding: 18px 16px 16px; border-radius: 22px; }
    .hp-latest-card__avatar { width: 112px; height: 112px; }
}

/* ==============================
   3. ABOUT — full-bleed image · veil · copy on top
   ============================== */
@keyframes hpAboutFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.hp-about {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 110px 0;
    color: #fff;
}
.hp-about__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--about-img) center / cover no-repeat;
    transform: scale(1.04);
}
@media (min-width: 1024px) and (hover: hover) {
    .hp-about__bg { background-attachment: fixed; }
}
.hp-about__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(13, 31, 45, 0.94) 0%, rgba(13, 31, 45, 0.8) 55%, rgba(12, 111, 108, 0.55) 100%);
}
html[dir="rtl"] .hp-about__veil {
    background: linear-gradient(270deg, rgba(13, 31, 45, 0.94) 0%, rgba(13, 31, 45, 0.8) 55%, rgba(12, 111, 108, 0.55) 100%);
}
.hp-about__inner {
    position: relative;
    z-index: 2;
}
.hp-about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 60px;
    align-items: center;
}
.hp-about .sh-head { margin-bottom: 22px; }
.hp-about__text p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.02rem;
    line-height: 1.95;
    margin: 0 0 12px;
}
.hp-about__points {
    list-style: none;
    padding: 0;
    margin: 24px 0 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
}
.hp-about__points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.hp-about__points li::before {
    content: "\f00c";
    font-family: "Font Awesome 7 Free", "Font Awesome 6 Free";
    font-weight: 900;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.62rem;
    background: #0F8B88;
    color: #fff;
}
.hp-about__points li:hover {
    background: rgba(15, 139, 136, 0.22);
    border-color: rgba(94, 212, 208, 0.4);
    transform: translateX(-4px);
}
html[dir="ltr"] .hp-about__points li:hover { transform: translateX(4px); }
.hp-about__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.hp-about__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 10px;
    background: #0F8B88;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.97rem;
    border: 1.5px solid transparent;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hp-about__btn:hover {
    background: #12a19d;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 139, 136, 0.4);
}
.hp-about__btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
}
.hp-about__btn--ghost:hover {
    background: rgba(94, 212, 208, 0.1);
    border-color: #5ed4d0;
    color: #5ed4d0 !important;
    box-shadow: none;
}
html[dir="ltr"] .hp-about__btn .fa-arrow-left { transform: scaleX(-1); }
/* side column */
.hp-about__side {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.hp-about__card {
    text-align: center;
    padding: 32px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}
.hp-about__card-ico {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-size: 26px;
    color: #fff;
    background: linear-gradient(135deg, #0F8B88, #12a19d);
    box-shadow: 0 14px 30px rgba(15, 139, 136, 0.45);
    animation: hpAboutFloat 4s ease-in-out infinite;
}
.hp-about__card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 6px;
    color: #fff;
}
.hp-about__card p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 18px;
    font-size: 0.95rem;
}
.hp-about__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 999px;
    background: #fff;
    color: #0D1F2D !important;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}
.hp-about__phone:hover {
    background: #5ed4d0;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(94, 212, 208, 0.4);
}
.hp-about__mini {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.hp-about__mini div {
    text-align: center;
    padding: 16px 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.hp-about__mini strong {
    display: block;
    font-size: 1.45rem;
    font-weight: 900;
    color: #5ed4d0;
    line-height: 1.1;
    margin-bottom: 4px;
}
.hp-about__mini span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
}
@media (max-width: 991px) {
    .hp-about { padding: 80px 0; }
    .hp-about__grid { grid-template-columns: 1fr; gap: 34px; }
    .hp-about__veil,
    html[dir="rtl"] .hp-about__veil {
        background: linear-gradient(180deg, rgba(13, 31, 45, 0.9) 0%, rgba(13, 31, 45, 0.82) 60%, rgba(12, 111, 108, 0.7) 100%);
    }
}
@media (max-width: 600px) {
    .hp-about__points { grid-template-columns: 1fr; }
    .hp-about__mini { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
    .hp-about__mini strong { font-size: 1.2rem; }
}

/* ==============================
   4. NATIONALITIES — 2D map backdrop with pulsing pins · refined cards
   ============================== */
@keyframes hpPinRipple {
    0%   { transform: translate(-50%, -50%) scale(0.6); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
}
.hp-nat {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 100px 0;
    background: #fff;
}
/* the flat world map, kept at its own aspect ratio so the pins land on the right countries */
.hp-nat__map {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    width: max(100%, 1180px);
    aspect-ratio: 1220 / 600;
    transform: translate(-50%, -50%);
    background: url("../images/map.webp") center / 100% 100% no-repeat;
    filter: sepia(1) hue-rotate(125deg) saturate(2.2) brightness(0.9) contrast(1.15);
    opacity: 1;
    pointer-events: none;
}
.hp-nat__pin {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0F8B88;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 4px 10px rgba(13, 31, 45, 0.25);
}
.hp-nat__pin::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #0F8B88;
    animation: hpPinRipple 2.8s ease-out infinite;
    animation-delay: var(--d, 0s);
}
.hp-nat__pin.is-home {
    width: 16px;
    height: 16px;
    background: #0D1F2D;
}
.hp-nat__pin.is-home::before { border-color: #0D1F2D; width: 34px; height: 34px; }
/* white translucent wash so the map stays a backdrop */
.hp-nat__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(60% 55% at 50% 50%, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.4) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.2) 22%, rgba(255, 255, 255, 0.2) 78%, rgba(255, 255, 255, 0.95) 100%);
}
.hp-nat__inner {
    position: relative;
    z-index: 2;
}
.hp-nat__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
.hp-nat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid #E8ECEF;
    box-shadow: 0 10px 30px rgba(13, 31, 45, 0.06);
    color: #0D1F2D;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}
.hp-nat-card::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 4px;
    background: linear-gradient(90deg, #0D1F2D, #0F8B88, #5ed4d0);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
html[dir="rtl"] .hp-nat-card::before { transform-origin: 100% 50%; }
.hp-nat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(15, 139, 136, 0.35);
    box-shadow: 0 24px 50px -16px rgba(15, 139, 136, 0.35);
}
.hp-nat-card:hover::before { transform: scaleX(1); }
.hp-nat-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
}
.hp-nat-card__flag {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px rgba(15, 139, 136, 0.35), 0 8px 18px rgba(13, 31, 45, 0.15);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hp-nat-card__flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hp-nat-card:hover .hp-nat-card__flag { transform: rotate(-6deg) scale(1.06); }
.hp-nat-card__name {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0;
    color: #0D1F2D;
}
.hp-nat-card__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.hp-nat-card__cell {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #f3f6f7;
    transition: background 0.3s ease;
}
.hp-nat-card:hover .hp-nat-card__cell { background: rgba(15, 139, 136, 0.08); }
.hp-nat-card__cell i {
    color: #0F8B88;
    font-size: 0.85rem;
    margin-bottom: 4px;
}
.hp-nat-card__cell .lbl {
    font-size: 0.72rem;
    color: #6b7a83;
}
.hp-nat-card__cell .val {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0D1F2D;
}
.hp-nat-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed #dfe5e8;
}
.hp-nat-card__price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0F8B88;
    line-height: 1;
}
.hp-nat-card__price small {
    font-size: 0.72rem;
    font-weight: 700;
    color: #6b7a83;
}
.hp-nat-card__cta {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #0D1F2D;
    color: #fff;
    transition: all 0.4s ease;
}
.hp-nat-card:hover .hp-nat-card__cta {
    background: #0F8B88;
    transform: translateX(-4px);
    box-shadow: 0 10px 22px rgba(15, 139, 136, 0.4);
}
html[dir="ltr"] .hp-nat-card__cta i { transform: scaleX(-1); }
html[dir="ltr"] .hp-nat-card:hover .hp-nat-card__cta { transform: translateX(4px); }
@media (max-width: 1199px) {
    .hp-nat__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 991px) {
    .hp-nat { padding: 72px 0; }
    .hp-nat__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .hp-nat__map { width: max(100%, 900px); }
}
@media (max-width: 767px) {
    .hp-nat__grid { gap: 12px; }
    .hp-nat-card { padding: 16px; gap: 12px; border-radius: 18px; }
    .hp-nat-card__flag { width: 52px; height: 52px; }
    .hp-nat-card__name { font-size: 1rem; }
    .hp-nat-card__meta { gap: 8px; }
    .hp-nat-card__cell { padding: 8px 10px; }
    .hp-nat-card__price { font-size: 1.25rem; }
    .hp-nat-card__cta { width: 36px; height: 36px; }
}
@media (max-width: 400px) {
    .hp-nat__grid { grid-template-columns: minmax(0, 1fr); }
}

/* ==============================
   5. WHY CHOOSE US — dark stage · coverflow swiper
   ============================== */
@keyframes hpWhyPop {
    from { transform: scale(0.5) rotate(-25deg); opacity: 0; }
    to   { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes hpWhyBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(30px, -24px) scale(1.08); }
}
.hp-why {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 100px 0 90px;
    background: #0D1F2D;
    color: #fff;
}
.hp-why::before,
.hp-why::after {
    content: "";
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(14px);
    pointer-events: none;
    animation: hpWhyBlob 10s ease-in-out infinite;
}
.hp-why::before {
    top: -140px;
    inset-inline-start: -80px;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(15, 139, 136, 0.42), transparent 70%);
}
.hp-why::after {
    bottom: -160px;
    inset-inline-end: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(15, 139, 136, 0.3), transparent 70%);
    animation-delay: -5s;
}
.hp-why > .container { position: relative; z-index: 1; }
.hp-why__slider {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.hpWhySwiper {
    overflow: visible;
    padding: 16px 0 26px;
}
.hpWhySwiper .swiper-slide {
    width: 340px;
    height: auto;
    opacity: 0.45;
    transform: scale(0.88);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hpWhySwiper .swiper-slide-prev,
.hpWhySwiper .swiper-slide-next { opacity: 0.75; transform: scale(0.94); }
.hpWhySwiper .swiper-slide-active { opacity: 1; transform: scale(1); }
.hp-why-card {
    position: relative;
    height: 100%;
    min-height: 300px;
    padding: 34px 30px 30px;
    border-radius: 26px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.14);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
.swiper-slide-active .hp-why-card {
    border-color: rgba(94, 212, 208, 0.5);
    background: linear-gradient(160deg, rgba(15, 139, 136, 0.22), rgba(255, 255, 255, 0.04));
    box-shadow: 0 30px 70px -20px rgba(15, 139, 136, 0.55);
}
.hp-why-card__num {
    position: absolute;
    top: 16px;
    inset-inline-end: 22px;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.07);
}
.hp-why-card__ico {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-size: 26px;
    color: #fff;
    background: linear-gradient(135deg, #0F8B88, #12a19d);
    box-shadow: 0 14px 30px rgba(15, 139, 136, 0.4);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.swiper-slide-active .hp-why-card__ico { animation: hpWhyPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.hp-why-card:hover .hp-why-card__ico { transform: rotate(-10deg) scale(1.08); }
.hp-why-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}
.hp-why-card p {
    font-size: 0.96rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.76);
    margin: 0;
}
.hp-why-card__line {
    margin-top: auto;
    display: block;
    width: 44px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #5ed4d0, #0F8B88);
    transition: width 0.5s ease;
}
.swiper-slide-active .hp-why-card__line { width: 96px; }
.hp-why__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 10px;
}
.hp-why__btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: all 0.3s ease;
}
.hp-why__btn:hover {
    background: #0F8B88;
    border-color: #0F8B88;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(15, 139, 136, 0.4);
}
html[dir="ltr"] .hp-why__btn i { transform: scaleX(-1); }
.hp-why__pg {
    position: static;
    width: auto;
    display: flex;
    gap: 7px;
}
.hp-why__pg .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0;
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
    transition: all 0.3s ease;
}
.hp-why__pg .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 5px;
    background: #0F8B88;
}
@media (max-width: 767px) {
    .hp-why { padding: 72px 0 64px; }
    .hpWhySwiper .swiper-slide { width: 290px; }
    .hp-why-card { min-height: 260px; padding: 28px 24px 24px; }
}

/* ==============================
   6. STATISTICS SECTION
   ============================== */
.hp-stats {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        var(--rp-900) 0%,
        var(--rp-700) 50%,
        var(--rp-800) 100%
    );
}
.hp-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 28px;
}

.hp-stat-card {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    transition: var(--tx);
}
.hp-stat-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
}
.hp-stat-card__ico {
    font-size: 38px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 16px;
    display: block;
}
.hp-stat-card__num {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}
.hp-stat-card__lbl {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 600;
}

/* ==============================
   7. PROCESS / REQUIREMENTS — step flows
   ============================== */
@keyframes hpFlowRun {
    from { inset-inline-start: 0; }
    to   { inset-inline-start: calc(100% - 14px); }
}
@keyframes hpPanelIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
}
.hp-proc {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(60% 50% at 50% 0%, rgba(15, 139, 136, 0.12), transparent 70%),
        #E8ECEF;
}
/* segmented switch */
.hp-proc__tabs {
    display: flex;
    width: max-content;
    max-width: 100%;
    margin: 0 auto 52px;
    padding: 6px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #dfe5e8;
    box-shadow: 0 6px 18px rgba(13, 31, 45, 0.06);
}
.hp-proc__tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    padding: 12px 26px;
    border-radius: 999px;
    font-family: "Tajawal", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #5b6b73;
    cursor: pointer;
    transition: all 0.3s ease;
}
.hp-proc__tab:hover { color: #0F8B88; }
.hp-proc__tab.active {
    background: #0D1F2D;
    color: #fff;
    box-shadow: 0 8px 20px rgba(13, 31, 45, 0.25);
}
.hp-proc__panel { display: none; }
.hp-proc__panel.active {
    display: block;
    animation: hpPanelIn 0.5s ease both;
}
/* flow */
.hp-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding-top: 8px;
}
.hp-flow__track {
    position: absolute;
    top: 54px;
    inset-inline: 12.5%;
    height: 3px;
    border-radius: 3px;
    background: repeating-linear-gradient(90deg, #c4ced4 0 10px, transparent 10px 18px);
}
.hp-flow__runner {
    position: absolute;
    top: 50%;
    inset-inline-start: 0;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    border-radius: 50%;
    background: #0F8B88;
    box-shadow: 0 0 0 6px rgba(15, 139, 136, 0.18), 0 0 18px rgba(15, 139, 136, 0.7);
    animation: hpFlowRun 7s linear infinite;
}
.hp-flow__step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}
.hp-flow__node {
    position: relative;
    z-index: 1;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(15, 139, 136, 0.25), 0 14px 30px rgba(13, 31, 45, 0.1);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.45s ease;
}
.hp-flow__ico {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 24px;
    color: #0F8B88;
    background: rgba(15, 139, 136, 0.1);
    transition: all 0.4s ease;
}
.hp-flow__num {
    position: absolute;
    top: -6px;
    inset-inline-end: -6px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #0D1F2D;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 900;
    border: 3px solid #E8ECEF;
}
.hp-flow__step:hover .hp-flow__node {
    transform: translateY(-6px);
    box-shadow: 0 0 0 6px rgba(15, 139, 136, 0.2), 0 22px 40px rgba(15, 139, 136, 0.22);
}
.hp-flow__step:hover .hp-flow__ico {
    background: #0F8B88;
    color: #fff;
}
.hp-flow__card {
    flex: 1;
    width: 100%;
    padding: 22px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #dfe5e8;
    box-shadow: 0 8px 22px rgba(13, 31, 45, 0.05);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.hp-flow__step:hover .hp-flow__card {
    border-color: rgba(15, 139, 136, 0.35);
    box-shadow: 0 18px 40px rgba(15, 139, 136, 0.14);
    transform: translateY(-4px);
}
.hp-flow__card h4 {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5;
    color: #0D1F2D;
    margin: 0 0 8px;
}
.hp-flow__card p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #5b6b73;
    margin: 0;
}
/* arrow between steps */
.hp-flow__arrow {
    position: absolute;
    top: 42px;
    inset-inline-end: -24px;
    z-index: 2;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    color: #0F8B88;
    background: #fff;
    box-shadow: 0 4px 10px rgba(13, 31, 45, 0.12);
}
html[dir="ltr"] .hp-flow__arrow i { transform: scaleX(-1); }
@media (max-width: 991px) {
    .hp-proc { padding: 72px 0; }
    .hp-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
    .hp-flow__track,
    .hp-flow__arrow { display: none; }
}
@media (max-width: 600px) {
    .hp-flow { grid-template-columns: minmax(0, 1fr); gap: 0; padding-inline-start: 18px; }
    .hp-flow::before {
        content: "";
        position: absolute;
        top: 20px;
        bottom: 20px;
        inset-inline-start: 45px;
        width: 3px;
        border-radius: 3px;
        background: repeating-linear-gradient(180deg, #c4ced4 0 10px, transparent 10px 18px);
    }
    .hp-flow__step {
        flex-direction: row;
        align-items: flex-start;
        text-align: start;
        gap: 14px;
        padding-bottom: 22px;
    }
    .hp-flow__node { width: 58px; height: 58px; flex-shrink: 0; }
    .hp-flow__ico { width: 40px; height: 40px; font-size: 16px; }
    .hp-flow__num { width: 24px; height: 24px; font-size: 0.72rem; top: -4px; inset-inline-end: -4px; }
    .hp-proc__tabs { width: 100%; }
    .hp-proc__tab { flex: 1; justify-content: center; padding: 10px 12px; font-size: 0.85rem; }
}

/* ==============================
   8. CUSTOMER SERVICE AGENTS — animated contact cards
   ============================== */
@keyframes hpAgentWave {
    0%   { transform: scale(0.8); opacity: 0.7; }
    100% { transform: scale(1.9); opacity: 0; }
}
@keyframes hpAgentRing {
    0%, 100% { transform: rotate(0); }
    20% { transform: rotate(-14deg); }
    40% { transform: rotate(12deg); }
    60% { transform: rotate(-8deg); }
    80% { transform: rotate(6deg); }
}
@keyframes hpAgentStar {
    from { transform: scale(0) rotate(-40deg); opacity: 0; }
    to   { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes hpAgentBlink {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
    70%      { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
}
.hp-agents {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #fff;
}
.hp-agents__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    max-width: 1040px;
    margin: 0 auto;
}
.hp-agent-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 26px 28px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid #E8ECEF;
    box-shadow: 0 10px 30px rgba(13, 31, 45, 0.05);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}
/* soft teal glow that drifts down on hover */
.hp-agent-card__glow {
    position: absolute;
    top: -120px;
    left: 50%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(15, 139, 136, 0.18), transparent 70%);
    transition: transform 0.6s ease, opacity 0.6s ease;
    pointer-events: none;
}
.hp-agent-card::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 5px;
    background: linear-gradient(90deg, #0D1F2D, #0F8B88, #5ed4d0);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.hp-agent-card:hover {
    transform: translateY(-8px);
    border-color: rgba(15, 139, 136, 0.35);
    box-shadow: 0 28px 54px -20px rgba(15, 139, 136, 0.4);
}
.hp-agent-card:hover::before { transform: scaleX(1); }
.hp-agent-card:hover .hp-agent-card__glow { transform: translateX(-50%) translateY(40px); }
/* avatar with call waves */
.hp-agent-card__ava {
    position: relative;
    width: 108px;
    height: 108px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
}
.hp-agent-card__wave {
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 2px solid rgba(15, 139, 136, 0.5);
    animation: hpAgentWave 2.6s ease-out infinite;
}
.hp-agent-card__wave--2 { animation-delay: 1.3s; }
.hp-agent-card__ava-in {
    position: relative;
    z-index: 1;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 32px;
    color: #fff;
    background: linear-gradient(135deg, #0F8B88, #0D1F2D);
    box-shadow: 0 16px 30px rgba(15, 139, 136, 0.35), inset 0 0 0 4px rgba(255, 255, 255, 0.25);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hp-agent-card:hover .hp-agent-card__ava-in { transform: scale(1.06) rotate(-6deg); }
.hp-agent-card:hover .hp-agent-card__ava-in i { animation: hpAgentRing 0.9s ease; }
.hp-agent-card__online {
    position: absolute;
    z-index: 2;
    bottom: 10px;
    inset-inline-end: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #25d366;
    border: 3px solid #fff;
    animation: hpAgentBlink 2s ease-out infinite;
}
.hp-agent-card__name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0D1F2D;
    margin: 0 0 4px;
}
.hp-agent-card__role {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0F8B88;
    margin: 0 0 12px;
}
.hp-agent-stars {
    display: inline-flex;
    gap: 3px;
    color: #f5b301;
    font-size: 0.85rem;
    margin-bottom: 22px;
}
.hp-agent-stars i {
    opacity: 0;
    transform: scale(0);
}
.hp-agent-card.vis .hp-agent-stars i { animation: hpAgentStar 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
.hp-agent-card.vis .hp-agent-stars i:nth-child(2) { animation-delay: 0.1s; }
.hp-agent-card.vis .hp-agent-stars i:nth-child(3) { animation-delay: 0.2s; }
.hp-agent-card.vis .hp-agent-stars i:nth-child(4) { animation-delay: 0.3s; }
.hp-agent-card.vis .hp-agent-stars i:nth-child(5) { animation-delay: 0.4s; }
.hp-agent-card__btns {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: auto;
}
.hp-agent-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.hp-agent-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
}
.hp-agent-btn:hover::after { transform: translateX(120%); }
.hp-agent-btn.wa {
    background: #25d366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.hp-agent-btn.tel {
    background: #0D1F2D;
    box-shadow: 0 8px 20px rgba(13, 31, 45, 0.25);
}
.hp-agent-btn:hover { transform: translateY(-3px); }
.hp-agent-btn.tel:hover { background: #0F8B88; box-shadow: 0 12px 26px rgba(15, 139, 136, 0.4); }
.hp-agent-btn i { font-size: 1rem; }
@media (max-width: 991px) {
    .hp-agents { padding: 72px 0; }
    .hp-agents__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
}
@media (max-width: 600px) {
    .hp-agents__grid { grid-template-columns: minmax(0, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
    .hp-agent-card__wave, .hp-agent-card__online { animation: none; }
}

/* ==============================
   9. CTA BANNER — "start now"
   ============================== */
@keyframes hpCtaRing {
    0%   { transform: translate(-50%, -50%) scale(0.5); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}
@keyframes hpCtaFloat {
    0%, 100% { transform: translateY(0) rotate(0); }
    50%      { transform: translateY(-10px) rotate(-6deg); }
}
.hp-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 96px 0;
    background: linear-gradient(120deg, #0F8B88 0%, #0c6f6c 60%, #0D1F2D 140%);
    color: #fff;
}
/* expanding rings on the visual side */
.hp-cta__rings {
    position: absolute;
    z-index: 0;
    top: 50%;
    inset-inline-start: 18%;
    width: 0;
    height: 0;
    pointer-events: none;
}
.hp-cta__rings span {
    position: absolute;
    left: 0;
    top: 0;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    animation: hpCtaRing 6s ease-out infinite;
}
.hp-cta__rings span:nth-child(2) { animation-delay: 2s; }
.hp-cta__rings span:nth-child(3) { animation-delay: 4s; }
/* faint grid texture */
.hp-cta__grid {
    position: absolute;
    z-index: 0;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(70% 80% at 50% 50%, #000, transparent);
    mask-image: radial-gradient(70% 80% at 50% 50%, #000, transparent);
    pointer-events: none;
}
.hp-cta > .container { position: relative; z-index: 1; }
.hp-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: center;
    gap: 48px;
}
.hp-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 18px;
}
.hp-cta__h2 {
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    font-weight: 900;
    line-height: 1.35;
    color: #fff;
    margin: 0 0 14px;
}
.hp-cta__h2 span {
    position: relative;
    display: inline-block;
    color: #fff;
}
.hp-cta__h2 span::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 4px;
    height: 0.34em;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    z-index: -1;
}
.hp-cta__sub {
    font-size: 1.02rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0;
}
.hp-cta__actions {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px;
    border-radius: 24px;
    background: rgba(13, 31, 45, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.18);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
}
.hp-cta__btn-w,
.hp-cta__btn-o {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    font-family: "Tajawal", sans-serif;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hp-cta__btn-w {
    background: #fff;
    color: #0D1F2D !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.hp-cta__btn-w:hover {
    background: #E8ECEF;
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}
.hp-cta__btn-o {
    background: transparent;
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.hp-cta__btn-o:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    transform: translateY(-3px);
}
.hp-cta__icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}
.hp-cta__icons span {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #5ed4d0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    animation: hpCtaFloat 4s ease-in-out infinite;
}
.hp-cta__icons span:nth-child(2) { animation-delay: 0.7s; }
.hp-cta__icons span:nth-child(3) { animation-delay: 1.4s; }
@media (max-width: 991px) {
    .hp-cta { padding: 72px 0; }
    .hp-cta__inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .hp-cta__sub { margin: 0 auto; }
    .hp-cta__rings { inset-inline-start: 50%; top: 40%; }
}
@media (prefers-reduced-motion: reduce) {
    .hp-cta__rings span, .hp-cta__icons span { animation: none; }
}

/* ==============================
   1. HERO — rotating globe backdrop · veil · first slider (text + image with waves)
   ============================== */
@keyframes vhIn {
    to { opacity: 1; transform: none; }
}
@keyframes vhPillPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(15, 139, 136, 0.35); }
    70%      { box-shadow: 0 0 0 8px rgba(15, 139, 136, 0); }
}
@keyframes vhWave {
    0%   { transform: scale(0.74); opacity: 0.85; }
    100% { transform: scale(1.42); opacity: 0; }
}
@keyframes vhSpin {
    to { transform: rotate(360deg); }
}
@keyframes vhSpinBack {
    to { transform: rotate(-360deg); }
}
@keyframes vhFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
@keyframes vhCardFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
@keyframes vhGlow {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50%      { opacity: 0.9;  transform: scale(1.06); }
}

.vh-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #0D1F2D;
    color: #fff;
}
/* 1) globe canvas — large, anchored behind the image side, bleeding off the edge */
.vh-hero__globe {
    position: absolute;
    z-index: 0;
    top: 50%;
    inset-inline-end: -14%;
    width: min(128vh, 1040px, 118vw);
    aspect-ratio: 1 / 1;
    transform: translateY(-47%);
    pointer-events: none;
}
.vh-hero__globe canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}
/* 2) translucent veil — darker over the text side, nearly clear over the globe */
.vh-hero__veil {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(13, 31, 45, 0.45) 0%, rgba(13, 31, 45, 0) 30%, rgba(13, 31, 45, 0) 60%, rgba(13, 31, 45, 0.92) 100%);
}
html[dir="rtl"] .vh-hero__veil {
    background:
        linear-gradient(to left, rgba(13, 31, 45, 0.86) 0%, rgba(13, 31, 45, 0.55) 42%, rgba(13, 31, 45, 0.08) 100%),
        linear-gradient(180deg, rgba(13, 31, 45, 0.45) 0%, rgba(13, 31, 45, 0) 30%, rgba(13, 31, 45, 0) 60%, rgba(13, 31, 45, 0.92) 100%);
}
html[dir="ltr"] .vh-hero__veil {
    background:
        linear-gradient(to right, rgba(13, 31, 45, 0.86) 0%, rgba(13, 31, 45, 0.55) 42%, rgba(13, 31, 45, 0.08) 100%),
        linear-gradient(180deg, rgba(13, 31, 45, 0.45) 0%, rgba(13, 31, 45, 0) 30%, rgba(13, 31, 45, 0) 60%, rgba(13, 31, 45, 0.92) 100%);
}
/* 3) content grid */
.vh-hero__grid {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 48px;
    padding: calc(var(--site-header-h, 101px) + 56px) 24px 56px;
    min-height: min(88svh, 820px);
    min-width: 0;
}
body.has-fast-news .vh-hero__grid {
    padding-top: calc(var(--site-header-h, 101px) + var(--fast-news-height, 44px) + 56px);
}

/* ── text side ── */
.vh-hero__content-col {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
}
.vh-hc {
    width: 100%;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.vh-hero .anim {
    opacity: 0;
    transform: translateY(24px);
    animation: vhIn 0.7s ease-out forwards;
    animation-delay: var(--d, 0s);
}
.vh-hc__badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 139, 136, 0.18);
    color: #5ed4d0;
    border: 1px solid rgba(94, 212, 208, 0.18);
    font-size: 13px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 999px;
    margin-bottom: 26px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.vh-hc__badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0F8B88;
    animation: vhPillPulse 2s infinite;
}
.vh-hc__title {
    font-size: clamp(2rem, 4vw, 50px);
    line-height: 1.28;
    font-weight: 800;
    color: #fff;
    margin: 0 0 22px;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
}
.vh-hc__desc {
    font-size: 17px;
    line-height: 1.85;
    color: #b7c6cb;
    max-width: 520px;
    margin: 0 0 32px;
}
.vh-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 30px;
}
.vh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: "Tajawal", sans-serif;
    padding: 15px 24px;
    border-radius: 10px;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}
.vh-btn i { font-size: 1em; }
.vh-btn--solid {
    background: #0F8B88;
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(15, 139, 136, 0.3);
}
.vh-btn--solid:hover {
    background: #12a19d;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 139, 136, 0.45);
}
.vh-btn--light {
    background: #fff;
    color: #0D1F2D !important;
}
.vh-btn--light:hover {
    background: #E8ECEF;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}
.vh-btn--glass {
    background: rgba(255, 255, 255, 0.04);
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.vh-btn--glass:hover {
    border-color: #5ed4d0;
    color: #5ed4d0 !important;
    background: rgba(94, 212, 208, 0.1);
    transform: translateY(-3px);
}
.vh-hc__trust {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #8ea0a6;
    font-size: 14px;
    font-weight: 500;
}
.vh-hc__trust b { color: #fff; font-weight: 700; }
.vh-hc__stars {
    display: inline-flex;
    gap: 3px;
    color: #5ed4d0;
    font-size: 0.82rem;
}

/* ── visual side: image + waves ── */
.vh-hero__visual-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 24px 0;
}
.vh-hero__orbit {
    position: relative;
    width: min(100%, 470px);
    aspect-ratio: 1 / 1;
}
/* expanding ripple waves */
.vh-wave {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
}
.vh-wave--1,
.vh-wave--2,
.vh-wave--3,
.vh-wave--4 {
    border: 1.5px solid rgba(94, 212, 208, 0.7);
    box-shadow: 0 0 24px rgba(15, 139, 136, 0.25), inset 0 0 24px rgba(15, 139, 136, 0.15);
    animation: vhWave 4.8s cubic-bezier(0.2, 0.6, 0.4, 1) infinite;
}
.vh-wave--2 { animation-delay: 1.2s; }
.vh-wave--3 { animation-delay: 2.4s; }
.vh-wave--4 { animation-delay: 3.6s; }
/* slow rotating dashed ring */
.vh-wave--dash {
    inset: -3%;
    border: 1px dashed rgba(255, 255, 255, 0.28);
    animation: vhSpin 48s linear infinite;
}
/* counter-rotating dotted ring with a bright bead */
.vh-wave--dots {
    inset: 5%;
    border: 2px dotted rgba(94, 212, 208, 0.35);
    animation: vhSpinBack 36s linear infinite;
}
.vh-wave--dots::after {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    margin-left: -6px;
    border-radius: 50%;
    background: #5ed4d0;
    box-shadow: 0 0 16px 4px rgba(94, 212, 208, 0.6);
}
/* the slider image */
.vh-hero__img-frame {
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    overflow: hidden;
    background: #16303f;
    border: 5px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 0 12px rgba(15, 139, 136, 0.14),
        0 40px 90px -20px rgba(0, 0, 0, 0.7);
    animation: vhFloat 6s ease-in-out infinite;
}
.vh-hero__img-frame.is-fallback {
    background: #fff;
}
.vh-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vh-hero__img-frame.is-fallback .vh-hero__img {
    object-fit: contain;
    padding: 18%;
}
/* floating trust card */
.vh-hero__vcard {
    position: absolute;
    z-index: 3;
    inset-block-end: 6%;
    inset-inline-end: -4%;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
    animation: vhCardFloat 4s ease-in-out infinite 1s;
}
.vh-hero__vcard-ico {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #0F8B88;
    font-size: 16px;
    background: rgba(15, 139, 136, 0.12);
}
.vh-hero__vcard-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
    color: #0D1F2D;
}
.vh-hero__vcard-txt strong { font-size: 13px; font-weight: 800; color: #0D1F2D; }
.vh-hero__vcard-txt small { font-size: 11px; color: #5b6b73; }

/* ── responsive ── */
@media (max-width: 991px) {
    .vh-hero__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: calc(var(--site-header-h, 85px) + 36px);
        min-height: 0;
    }
    .vh-hero__visual-col { order: 1; padding: 8px 0 0; }
    .vh-hero__content-col { order: 2; }
    .vh-hero__orbit { width: min(78vw, 380px); }
    .vh-hc { max-width: 640px; margin: 0 auto; }
    .vh-hero__globe { inset-inline-end: auto; left: 50%; top: 0; width: min(125vw, 720px); transform: translate(-50%, -22%); }
    html[dir="rtl"] .vh-hero__veil,
    html[dir="ltr"] .vh-hero__veil {
        background: linear-gradient(180deg, rgba(13, 31, 45, 0.35) 0%, rgba(13, 31, 45, 0.1) 22%, rgba(13, 31, 45, 0.86) 58%, rgba(13, 31, 45, 0.96) 100%);
    }
}
@media (max-width: 767px) {
    .vh-hero__grid { padding-inline: 20px; padding-bottom: 40px; }
    .vh-hero__orbit { width: min(72vw, 300px); }
    .vh-hc__badge { margin-bottom: 18px; }
    .vh-hc__title { font-size: clamp(1.6rem, 7vw, 2.2rem); margin-bottom: 14px; }
    .vh-hc__desc { font-size: 15px; line-height: 1.75; margin-bottom: 22px; }
    .vh-hero__actions { gap: 10px; margin-bottom: 22px; }
    .vh-btn { padding: 13px 20px; font-size: 14px; }
    .vh-hero__vcard { inset-inline-end: -6%; padding: 10px 12px; }
    .vh-hero__vcard-txt small { display: none; }
    .vh-hc__trust { flex-wrap: wrap; gap: 7px 10px; font-size: 13px; }
}
@media (max-width: 480px) {
    .vh-btn { flex: 1 1 100%; justify-content: center; }
    .vh-hc__title { overflow-wrap: anywhere; }
    .hp-svc__grid,
    .hp-nat__grid,
    .hp-why__grid,
    .hp-proc__steps,
    .hp-agents__grid,
    .offers-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
    .vh-wave,
    .vh-hero__img-frame,
    .vh-hero__vcard,
    .vh-hero__globe::before { animation: none; }
}

/* ==============================
   1b. HERO STATS — navy strip under the hero (design)
   ============================== */
.vh-stats {
    background: #0D1F2D;
    position: relative;
    z-index: 3;
    padding: 0 0 8px;
    border-top: 0;
}
.vh-stats > .container {
    max-width: 1200px;
}
.vh-stats__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.vh-stat {
    position: relative;
    text-align: center;
    padding: 32px 12px;
    border-radius: 0;
    border-inline-end: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
}
.vh-stat::after {
    display: none;
}
.vh-stat:last-child { border-inline-end: none; }
.vh-stat:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: none;
    box-shadow: none;
}
.vh-stat__num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: #5ed4d0;
    font-variant-numeric: tabular-nums;
}
.vh-stat__lbl {
    display: block;
    margin-top: 6px;
    color: #8ea0a6;
    font-weight: 500;
    font-size: 13px;
}

/* ── Stats responsive ── */
@media (max-width: 767px) {
    .vh-stats__row { grid-template-columns: repeat(2, 1fr); }
    .vh-stat { padding: 22px 10px; }
    .vh-stat:nth-child(2n) { border-inline-end: none; }
    .vh-stat:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .vh-stat__num { font-size: 26px; }
}


/* ==============================
   1c. PARTNERS — logo marquee glued to the hero (logos only)
   ============================== */
@keyframes hpMarquee {
    to { transform: translateX(-50%); }
}
.hp-partners {
    position: relative;
    background: #fff;
    padding: 0;
    overflow: hidden;
    border-bottom: 1px solid #E8ECEF;
}
/* thin teal light along the seam with the hero */
.hp-partners::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #0F8B88 25%, #5ed4d0 50%, #0F8B88 75%, transparent 100%);
}
.hp-partners__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 24px;
}
.hp-partners__marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.hp-partners__track {
    display: flex;
    align-items: center;
    gap: 72px;
    width: max-content;
    animation: hpMarquee var(--hp-marquee-d, 36s) linear infinite;
    will-change: transform;
}
.hp-partners__marquee:hover .hp-partners__track {
    animation-play-state: paused;
}
/* plain logos — no card, no border */
.hp-partners__logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
}
.hp-partners__logo img {
    height: 110px;
    max-height: 110px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.75;
    transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}
.hp-partners__logo:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.06);
}
@media (max-width: 991px) {
    .hp-partners__inner { padding: 24px 16px; }
    .hp-partners__track { gap: 52px; }
    .hp-partners__logo { height: 96px; }
    .hp-partners__logo img { height: 88px; max-height: 88px; max-width: 210px; }
}
@media (max-width: 767px) {
    .hp-partners__track { gap: 40px; }
    .hp-partners__logo { height: 80px; }
    .hp-partners__logo img { height: 72px; max-height: 72px; max-width: 170px; }
}
@media (prefers-reduced-motion: reduce) {
    .hp-partners__track { animation: none; }
    .hp-partners__marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}

/* ==============================
   11. CONTACT SECTION — calm split layout
   ============================== */
.hp-contact {
    position: relative;
    padding: 100px 0;
    background: #fff;
}
.hp-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 28px;
    align-items: start;
}
/* info column */
.hp-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 26px;
    border-radius: 24px;
    background: #f5f8f9;
    border: 1px solid #E8ECEF;
}
.hp-cinfo-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #E8ECEF;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.hp-cinfo-item:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 139, 136, 0.35);
    box-shadow: 0 12px 26px rgba(15, 139, 136, 0.1);
}
.hp-cinfo-item__ico {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #0F8B88;
    background: rgba(15, 139, 136, 0.1);
    font-size: 1rem;
}
.hp-cinfo-item h6 {
    font-size: 0.76rem;
    font-weight: 700;
    color: #6b7a83;
    margin: 0 0 3px;
}
.hp-cinfo-item p {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0D1F2D;
    margin: 0;
    line-height: 1.5;
    word-break: break-word;
}
.hp-cinfo-item p a { color: #0D1F2D; text-decoration: none; transition: color 0.3s ease; }
.hp-cinfo-item p a:hover { color: #0F8B88; }
.hp-contact-wa {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    background: #25d366;
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}
.hp-contact-wa:hover { background: #1fb457; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(37, 211, 102, 0.3); }
/* form */
.hp-cform-wrap {
    padding: 34px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #E8ECEF;
    box-shadow: 0 20px 50px -24px rgba(13, 31, 45, 0.25);
}
.hp-frow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 16px;
}
.hp-fg { margin-bottom: 18px; }
.hp-fg label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    font-weight: 700;
    color: #0D1F2D;
    margin-bottom: 8px;
}
.hp-fg label i { color: #0F8B88; font-size: 0.8rem; }
.hp-fc {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1.5px solid #E8ECEF;
    background: #f7f9fa;
    font-family: "Tajawal", sans-serif;
    font-size: 0.95rem;
    color: #0D1F2D;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.hp-fc::placeholder { color: #9aa7ae; }
.hp-fc:focus {
    outline: none;
    background: #fff;
    border-color: #0F8B88;
    box-shadow: 0 0 0 4px rgba(15, 139, 136, 0.12);
}
textarea.hp-fc { resize: vertical; min-height: 130px; }
.hp-cform__submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
    border-radius: 12px;
    background: #0F8B88;
    color: #fff;
    border: 0;
    box-shadow: 0 10px 24px rgba(15, 139, 136, 0.3);
    transition: all 0.3s ease;
}
.hp-cform__submit:hover {
    background: #12a19d;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(15, 139, 136, 0.4);
}
@media (max-width: 991px) {
    .hp-contact { padding: 72px 0; }
    .hp-contact__grid { grid-template-columns: 1fr; }
    .hp-contact-info { order: 2; }
}
@media (max-width: 600px) {
    .hp-frow { grid-template-columns: 1fr; }
    .hp-cform-wrap { padding: 22px 18px; }
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 768px) {
    .hp-svc__grid {
        grid-template-columns: 1fr;
    }
    .hp-nat__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hp-why__grid {
        grid-template-columns: 1fr 1fr;
    }
    .hp-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hp-proc__steps {
        grid-template-columns: 1fr 1fr;
    }
    .hp-hero__stats-row {
        flex-wrap: wrap;
    }
    .hp-hero__stat {
        flex: 0 0 50%;
        border-inline-end: none;
        border-bottom: 1px solid rgba(255, 255, 255,.14);
    }
    .hp-hero__stat:nth-child(odd) {
        border-inline-end: 1px solid rgba(255, 255, 255,.14);
    }
    .hp-hero__stat:last-child,
    .hp-hero__stat:nth-last-child(2):nth-child(odd) {
        border-bottom: none;
    }
    .hp-about__badge {
        display: none;
    }
    .hp-cform-wrap {
        padding: 26px;
    }
}
@media (max-width: 480px) {
    .hp-nat__grid {
        grid-template-columns: 1fr;
    }
    .hp-why__grid {
        grid-template-columns: 1fr;
    }
    .hp-stats__grid {
        grid-template-columns: 1fr;
    }
    .hp-proc__steps {
        grid-template-columns: 1fr;
    }
    .hp-about__points {
        grid-template-columns: 1fr;
    }
    .hp-about__stats {
        grid-template-columns: 1fr;
    }
    .hp-hero__stats-row {
        flex-direction: column;
    }
    .hp-hero__stat {
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255,.14);
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   HOME SECTIONS — REDESIGN v2 (why / requirements / agents / cta / contact)
   navy #0D1F2D · teal #0F8B88          (overrides earlier blocks)
   ══════════════════════════════════════════════════════════════════════════ */

/* ── 5. WHY CHOOSE US → numbered feature cards ── */
.hp .hp-why__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    counter-reset: why;
}
.hp .hp-why-card {
    counter-increment: why;
    text-align: start;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 34px 28px;
    border-radius: 20px;
    border: 1px solid var(--rp-100);
    box-shadow: 0 10px 30px rgba(13, 31, 45, 0.05);
}
.hp .hp-why-card > * { position: relative; z-index: 1; }
.hp .hp-why-card::before {
    content: counter(why, decimal-leading-zero);
    position: absolute;
    z-index: 0;
    top: 12px;
    inset-inline-end: 22px;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(13, 31, 45, 0.05);
    transition: color 0.4s var(--ease);
}
.hp .hp-why-card:hover::before { color: rgba(15, 139, 136, 0.16); }
.hp .hp-why-card::after {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0D1F2D, #0F8B88);
    transform: scaleX(0);
    transform-origin: center;
}
.hp .hp-why-card:hover::after { transform: scaleX(1); transform-origin: center; }
.hp .hp-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 52px rgba(15, 139, 136, 0.14);
    border-color: transparent;
}
.hp .hp-why-card__ico {
    width: 60px;
    height: 60px;
    margin: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #0F8B88, #0c6f6c);
    color: #fff;
    font-size: 24px;
    box-shadow: 0 10px 24px rgba(15, 139, 136, 0.3);
}
.hp .hp-why-card:hover .hp-why-card__ico {
    background: linear-gradient(135deg, #0D1F2D, #0F8B88);
    transform: scale(1.06) rotate(-8deg);
}
.hp .hp-why-card h3 { color: var(--rp-100); font-size: 1.12rem; margin: 0; }
.hp .hp-why-card p { color: var(--rg-300); margin: 0; }

/* ── 7. REQUIREMENTS → left-aligned numbered step cards ── */
.hp .hp-proc__tab {
    border: 1.5px solid rgba(15, 139, 136, 0.4);
    color: #0F8B88;
    background: transparent;
}
.hp .hp-proc__tab.active {
    background: linear-gradient(135deg, #0F8B88, #0c6f6c);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 22px rgba(15, 139, 136, 0.3);
}
.hp .hp-proc__steps { gap: 20px; }
.hp .hp-proc__steps::before { display: none; }
.hp .hp-proc-step {
    text-align: start;
    align-items: flex-start;
    gap: 12px;
    padding: 30px 26px;
    border-radius: 18px;
    border: 1px solid var(--rp-100);
    box-shadow: 0 10px 30px rgba(13, 31, 45, 0.05);
}
.hp .hp-proc-step:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 22px 48px rgba(15, 139, 136, 0.14);
}
.hp .hp-proc-step__num {
    position: absolute;
    top: 22px;
    inset-inline-end: 22px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(15, 139, 136, 0.1);
    color: #0F8B88;
    font-size: 1rem;
    box-shadow: none;
}
.hp .hp-proc-step__ico {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0F8B88, #0c6f6c);
    color: #fff;
    font-size: 24px;
    box-shadow: 0 10px 24px rgba(15, 139, 136, 0.3);
    transition: transform 0.35s var(--ease);
}
.hp .hp-proc-step:hover .hp-proc-step__ico { transform: scale(1.06) rotate(-8deg); }
.hp .hp-proc-step h4 { color: var(--rp-900); margin: 6px 0 0; }
.hp .hp-proc-step p { text-align: start; }

/* ══════════════════════════════════════════
   MUSANED — verified profile section (full-width, light)
   ══════════════════════════════════════════ */
.hp-musaned {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(50% 40% at 100% 0%, rgba(15, 139, 136, 0.1), transparent 70%),
        radial-gradient(50% 40% at 0% 100%, rgba(15, 139, 136, 0.08), transparent 70%),
        #f5f8f9;
}
/* the profile spans the full page width */
.hp-msn {
    width: 100%;
    padding: 0 clamp(16px, 3vw, 48px);
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.hp-msn__office {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 22px 28px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #E8ECEF;
    box-shadow: 0 10px 30px rgba(13, 31, 45, 0.05);
}
.hp-msn__office-id {
    display: flex;
    align-items: center;
    gap: 16px;
}
.hp-msn__seal {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid #E8ECEF;
    box-shadow: 0 8px 18px rgba(13, 31, 45, 0.08);
    padding: 12px;
}
.hp-msn__seal img { width: 100%; height: 100%; object-fit: contain; }
.hp-msn__office h3 {
    font-size: 1.3rem;
    font-weight: 900;
    color: #0D1F2D;
    margin: 0 0 6px;
}
.hp-msn__rank {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #7a5200;
    background: linear-gradient(135deg, #fff3c4, #ffe08a);
    border: 1px solid #f2cf6b;
}
.hp-msn__rank b { font-weight: 900; }
.hp-msn__view {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 10px;
    background: #0D1F2D;
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}
.hp-msn__view:hover {
    background: #0F8B88;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 139, 136, 0.35);
}
.hp-msn__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 22px;
}
.hp-msn__panel {
    padding: 28px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #E8ECEF;
    box-shadow: 0 10px 30px rgba(13, 31, 45, 0.05);
}
.hp-msn__panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0D1F2D;
    margin: 0 0 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid #E8ECEF;
}
.hp-msn__panel-title i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #0F8B88;
    background: rgba(15, 139, 136, 0.1);
    font-size: 0.9rem;
}
/* progress rings */
.hp-msn__rings {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.hp-msn-ring {
    text-align: center;
}
.hp-msn-ring__svg {
    position: relative;
    width: 96px;
    height: 96px;
    margin: 0 auto 10px;
}
.hp-msn-ring__svg svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.hp-msn-ring__track {
    fill: none;
    stroke: #E8ECEF;
    stroke-width: 7;
}
.hp-msn-ring__val {
    fill: none;
    stroke: #0F8B88;
    stroke-width: 7;
    stroke-linecap: round;
    stroke-dasharray: var(--circ);
    stroke-dashoffset: var(--circ);
    transition: stroke-dashoffset 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.hp-msn-ring.vis .hp-msn-ring__val { stroke-dashoffset: var(--off); }
.hp-msn-ring__svg strong {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    font-weight: 900;
    color: #0D1F2D;
}
.hp-msn-ring__svg strong small { font-size: 0.7rem; font-weight: 700; color: #0F8B88; margin-inline-start: 1px; }
.hp-msn-ring__lbl {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #5b6b73;
    line-height: 1.5;
}
.hp-msn-ring__lbl i { color: #0F8B88; font-size: 0.8rem; }
/* reviews */
.hp-msn__reviews {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.hp-msn-rev {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 14px;
    background: #f5f8f9;
}
.hp-msn-stars {
    display: inline-flex;
    gap: 3px;
    color: #f5b301;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.hp-msn-rev__lbl {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0D1F2D;
}
.hp-msn-rev__num {
    font-size: 0.85rem;
    font-weight: 900;
    color: #0F8B88;
    background: rgba(15, 139, 136, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
}
.hp-msn__bars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.hp-msn-bar__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #5b6b73;
    margin-bottom: 8px;
}
.hp-msn-bar__head b { color: #0D1F2D; font-weight: 900; }
.hp-msn-bar__track {
    height: 8px;
    border-radius: 8px;
    background: #E8ECEF;
    overflow: hidden;
}
.hp-msn-bar__fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 8px;
    background: linear-gradient(90deg, #0F8B88, #5ed4d0);
    transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
.hp-msn-bar.vis .hp-msn-bar__fill { width: var(--w); }
/* contacts */
.hp-msn__contacts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.hp-msn-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #E8ECEF;
    color: #0D1F2D;
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
a.hp-msn-contact:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 139, 136, 0.35);
    box-shadow: 0 16px 30px rgba(15, 139, 136, 0.14);
}
.hp-msn-contact__ico {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #0F8B88, #0c6f6c);
    font-size: 1rem;
}
.hp-msn-contact__txt {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.hp-msn-contact__txt small {
    font-size: 0.74rem;
    color: #6b7a83;
    font-weight: 600;
}
.hp-msn-contact__txt strong {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0D1F2D;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: start;
}
@media (max-width: 1199px) {
    .hp-msn__contacts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 991px) {
    .hp-musaned { padding: 72px 0; }
    .hp-msn__grid { grid-template-columns: 1fr; }
    .hp-msn__rings { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .hp-msn__office { padding: 18px; }
    .hp-msn__view { width: 100%; justify-content: center; }
    .hp-msn__contacts { grid-template-columns: 1fr; }
    .hp-msn__bars { grid-template-columns: 1fr; }
    .hp-msn-rev { flex-wrap: wrap; }
}

/* ==============================
   OFFERS
   ============================== */
.hp-offers {
    padding: 90px 0;
    background: #fff;
}
.hp-offers--page {
    background: var(--rg-50);
}
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.offer-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(13, 31, 45, 0.08);
    border-radius: 18px;
    box-shadow: 0 16px 44px rgba(13, 31, 45, 0.1);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.offer-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 139, 136, 0.32);
    box-shadow: 0 24px 60px rgba(15, 139, 136, 0.16);
}
.offer-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--rg-100);
}
.offer-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--ease);
}
.offer-image-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
}
.offer-image-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13, 31, 45, 0);
    transition: background 0.25s ease;
}
.offer-image-link__zoom {
    position: absolute;
    inset-inline-end: 14px;
    bottom: 14px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--rp-900);
    box-shadow: 0 10px 24px rgba(13, 31, 45, 0.2);
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.offer-image-link:hover::after,
.offer-image-link:focus-visible::after {
    background: rgba(13, 31, 45, 0.18);
}
.offer-image-link:hover .offer-image-link__zoom,
.offer-image-link:focus-visible .offer-image-link__zoom {
    transform: translateY(0);
    opacity: 1;
}
.offer-card:hover .offer-card__media img {
    transform: scale(1.06);
}
.offer-card__badge {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0F8B88, #0a5f5d);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(15, 139, 136, 0.34);
}
.offer-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}
.offer-card__title {
    color: var(--rp-900);
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 10px;
}
.offer-card__desc {
    color: var(--rg-500);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 18px;
}
.offer-card__prices {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: auto;
    margin-bottom: 20px;
}
.offer-card__old-price {
    color: var(--rg-500);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: line-through;
}
.offer-card__new-price {
    color: #0F8B88;
    font-size: 1.35rem;
    font-weight: 900;
}
.offer-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 14px;
    background: var(--rp-900);
    color: #fff !important;
    font-weight: 900;
    transition: background 0.25s ease, transform 0.25s ease;
}
.offer-card__btn:hover {
    background: #0F8B88;
    color: #fff;
    transform: translateY(-2px);
}
.offer-card__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.offer-card__btn--outline {
    background: #fff;
    color: var(--rp-900) !important;
    border: 1px solid rgba(13, 31, 45, 0.14);
}
.offer-card__btn--outline:hover {
    border-color: #0F8B88;
    color: #fff !important;
}
.offers-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    padding: 44px 28px;
    background: #fff;
    border: 1px solid rgba(13, 31, 45, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
}
.offers-empty i {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: rgba(15, 139, 136, 0.1);
    color: #0F8B88;
    font-size: 1.6rem;
}
.offers-empty h3 {
    color: var(--rp-900);
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 10px;
}
.offers-empty p {
    color: var(--rg-500);
    line-height: 1.8;
    margin-bottom: 22px;
}
@media (max-width: 991px) {
    .offers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .hp-offers {
        padding: 62px 0;
    }
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .offer-card__body {
        padding: 18px;
    }
}

.offer-details {
    padding: 90px 0;
    background: var(--rg-50);
}
.offer-details__hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px;
    align-items: stretch;
    margin-bottom: 28px;
}
.offer-details__media {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 22px;
    background: var(--rg-100);
    box-shadow: 0 22px 58px rgba(13, 31, 45, 0.14);
}
.offer-details__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.offer-details__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(24px, 4vw, 42px);
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(13, 31, 45, 0.08);
    box-shadow: 0 22px 58px rgba(13, 31, 45, 0.1);
}
.offer-details__content h1 {
    color: var(--rp-900);
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 900;
    line-height: 1.35;
    margin: 0 0 18px;
}
.offer-details__description {
    color: var(--rg-700);
    font-size: 1rem;
    line-height: 1.95;
    margin-bottom: 24px;
}
.offer-details__description p {
    margin-bottom: 12px;
}
.offer-details__prices {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px 14px;
    margin-bottom: 24px;
}
.offer-details__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    min-width: 190px;
    padding: 14px 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0F8B88, #0a5f5d);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 12px 32px rgba(15, 139, 136, 0.28);
}
.offer-details__cta:hover {
    color: #fff;
    transform: translateY(-2px);
}
.offer-details__info {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}
.offer-info-card {
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(13, 31, 45, 0.08);
    box-shadow: var(--shadow-sm);
}
.offer-info-card span {
    display: block;
    color: var(--rg-500);
    font-size: 0.86rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.offer-info-card strong {
    color: var(--rp-900);
    font-size: 1rem;
    font-weight: 900;
}
.offer-details__block {
    padding: 28px;
    margin-top: 24px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(13, 31, 45, 0.08);
    box-shadow: var(--shadow-sm);
}
.offer-details__block h2 {
    color: var(--rp-900);
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 18px;
}
.offer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.offer-tags span {
    display: inline-flex;
    padding: 8px 15px;
    border-radius: 999px;
    background: rgba(15, 139, 136, 0.1);
    color: #0a5f5d;
    font-weight: 800;
}
.offer-maids-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.offer-maid-card {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px;
    border-radius: 14px;
    background: var(--rg-50);
    border: 1px solid rgba(13, 31, 45, 0.08);
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.offer-maid-card:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 139, 136, 0.3);
}
.offer-maid-card img {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    object-fit: cover;
    flex: 0 0 auto;
}
.offer-maid-card strong {
    display: block;
    color: var(--rp-900);
    font-weight: 900;
}
.offer-maid-card span {
    color: var(--rg-500);
    font-size: 0.86rem;
}
@media (max-width: 991px) {
    .offer-details__hero,
    .offer-details__info {
        grid-template-columns: 1fr 1fr;
    }
    .offer-maids-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 700px) {
    .offer-details {
        padding: 62px 0;
    }
    .offer-details__hero,
    .offer-details__info,
    .offer-maids-grid {
        grid-template-columns: 1fr;
    }
    .offer-details__media {
        min-height: 280px;
    }
    .offer-details__cta {
        width: 100%;
    }
}
