/* ==============================
   DESIGN TOKENS — RAFEDEEN BRAND
   ============================== */
:root {
    --rp-900: #16243e;
    --rp-800: #234482;
    --rp-700: #2d549b;
    --rp-600: #4069b5;
    --rp-500: #5c7fbf;
    --rp-400: #869fcd;
    --rp-300: #b1c1df;
    --rp-200: #d9dee8;
    --rp-100: #f1f3f6;
    --rp-50: #f8f9fb;

    /* teal accent — brand green (#0DA67B) */
    --rt-700: #097255;
    --rt-600: #0a8763;
    --rt-500: #0da67b;
    --rt-400: #3dbf9a;
    --rt-300: #74d5b8;

    --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(92, 127, 191, 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
   ============================== */
/* ── Unified section header (used by every home section) ── */
.hp .sh-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 56px;
}
.hp .sh-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 166, 123, 0.08);
    color: #0da67b;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 7px 18px;
    border-radius: 999px;
    border: 1px solid rgba(13, 166, 123, 0.22);
    margin-bottom: 16px;
}
.hp .sh-badge i { font-size: 0.92em; }
.hp .sh-title {
    position: relative;
    font-size: clamp(1.6rem, 3.8vw, 2.4rem);
    font-weight: 900;
    color: var(--rp-900);
    line-height: 1.3;
    margin: 0 0 20px;
    padding-bottom: 16px;
    text-wrap: balance;
}
.hp .sh-title .accent { color: #0da67b; }
.hp .sh-head .sh-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 62px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, #16243e, #0da67b);
}
.hp .sh-sub {
    font-size: 1rem;
    color: var(--rg-500);
    line-height: 1.9;
    max-width: 580px;
    margin: 0 auto;
}

/* dark-background variant (statistics, nationalities …) */
.hp .sh-head--dark .sh-badge {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.26);
    color: #fff;
}
.hp .sh-head--dark .sh-title { color: #fff; }
.hp .sh-head--dark .sh-sub { color: rgba(255, 255, 255, 0.78); }
.hp .sh-head--dark .sh-title::after,
.hp .hp-nat .sh-title::after {
    background: linear-gradient(90deg, #ffffff, #2ee6ad);
}

.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(13, 166, 123, 0.28);
}
.hp .btn-pp:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(13, 166, 123, 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(22, 36, 62, 0.93) 0%,
        rgba(45, 84, 155, 0.86) 40%,
        rgba(92, 127, 191, 0.78) 70%,
        rgba(22, 36, 62, 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, #b1c1df);
    -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, #72c5ae);
    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 SECTION
   ============================== */
/* ==============================
   2. SERVICES — media cards
   ============================== */
.hp-svc {
    padding: 96px 0;
    background: var(--rg-50);
    position: relative;
    overflow: hidden;
}
.hp-svc::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    top: -240px;
    inset-inline-start: -220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 166, 123, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hp-svc > .container {
    position: relative;
    z-index: 1;
}

.hp-svc__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
}

.hp-svc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--rp-100);
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(22, 36, 62, 0.06);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.hp-svc-card::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 4px;
    z-index: 3;
    background: linear-gradient(90deg, #16243e, #0da67b);
    transform: scaleX(0);
    transition: transform 0.45s var(--ease);
}
.hp-svc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 60px rgba(22, 36, 62, 0.16);
    border-color: transparent;
}
.hp-svc-card:hover::before { transform: scaleX(1); }

/* media */
.hp-svc-card__media {
    position: relative;
    height: 190px;
    overflow: hidden;
}
.hp-svc-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.8s var(--ease);
}
.hp-svc-card:hover .hp-svc-card__media img { transform: scale(1.1); }
.hp-svc-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 36, 62, 0.55), transparent 55%);
}

/* floating icon badge */
.hp-svc-card__ico {
    position: absolute;
    z-index: 2;
    /* bottom: -26px; */
    bottom: 8px;
    inset-inline-start: 24px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 22px;
    color: #fff;
    background: linear-gradient(135deg, #0da67b, #0a8763);
    box-shadow: 0 10px 24px rgba(13, 166, 123, 0.4);
    transition: transform 0.4s var(--ease);
}
.hp-svc-card.pp .hp-svc-card__ico {
    background: linear-gradient(135deg, #16243e, #2d549b);
    box-shadow: 0 10px 24px rgba(22, 36, 62, 0.34);
}
.hp-svc-card:hover .hp-svc-card__ico { transform: translateY(-4px) rotate(-6deg); }

/* body */
.hp-svc-card__body {
    padding: 40px 26px 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.hp-svc-card__title {
    font-size: 1.22rem;
    font-weight: 800;
    color: var(--rp-900);
}
.hp-svc-card__desc {
    font-size: 0.92rem;
    color: var(--rg-500);
    line-height: 1.85;
}
.hp-svc-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 2px;
}
.svc-pill {
    font-size: 0.74rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(13, 166, 123, 0.08);
    color: #0a8763;
    border: 1px solid rgba(13, 166, 123, 0.18);
}
.hp-svc-card__cta {
    margin-top: auto;
    padding-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 800;
    color: #0da67b;
}
.hp-svc-card__cta svg {
    width: 15px;
    height: 15px;
    transform: scaleX(-1);
    transition: transform 0.3s var(--ease);
}
.hp-svc-card:hover .hp-svc-card__cta svg { transform: scaleX(-1) translateX(-5px); }

/* ==============================
   LATEST CVS SECTIONS
   ============================== */
.hp-latest {
    padding: 88px 0;
    background: #fff;
}
.hp-latest--rental {
    background: var(--rg-50);
}
.hp-latest__slider-wrap {
    position: relative;
    padding: 0 54px 42px;
}
.hpLatestSwiper {
    overflow: hidden;
    padding: 4px 4px 18px;
}
.hpLatestSwiper .swiper-wrapper {
    align-items: stretch;
}
.hpLatestSwiper .swiper-slide {
    height: auto;
    display: flex;
}
.hp-latest-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    width: 100%;
    overflow: hidden;
    background: #fff;
    border: 1.5px solid var(--rp-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--tx);
}
.hp-latest-card:hover {
    transform: translateY(-7px);
    border-color: #0da67b;
    box-shadow: 0 22px 50px rgba(13, 166, 123, 0.16);
}
.hp-latest-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--rp-50);
}
.hp-latest-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.hp-latest-card:hover .hp-latest-card__media img {
    transform: scale(1.06);
}
.hp-latest-card__code {
    position: absolute;
    z-index: 2;
    top: 12px;
    inset-inline-start: 12px;
    max-width: calc(100% - 24px);
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--rp-800);
    font-size: 0.74rem;
    font-weight: 900;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hp-latest-card__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(22, 36, 62, 0.35), transparent 42%);
    pointer-events: none;
}
/* small brand emblem — circular shield seal */
.hp-latest-card__brand {
    position: absolute;
    z-index: 3;
    bottom: 10px;
    inset-inline-end: 10px;
    width: 40px;
    height: 40px;
    padding: 7px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 16px rgba(22, 36, 62, 0.22);
    display: grid;
    place-items: center;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.hp-latest-card__brand svg {
    width: 100%;
    height: 100%;
    display: block;
}
.hp-latest-card:hover .hp-latest-card__brand {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 22px rgba(13, 166, 123, 0.34);
}
.hp-latest-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
}
.hp-latest-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.hp-latest-card__top h3 {
    color: var(--rg-900);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.45;
}
.hp-latest-card__top span {
    flex-shrink: 0;
    padding: 4px 9px;
    border-radius: 999px;
    background: var(--rp-100);
    color: var(--rp-700);
    font-size: 0.72rem;
    font-weight: 800;
}
.hp-latest--rental .hp-latest-card__top span {
    background: #ebf4f2;
    color: #28aa85;
}
.hp-latest-card__meta {
    display: grid;
    gap: 9px;
}
.hp-latest-card__meta div {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: var(--rg-600, #4b5363);
    font-size: 0.84rem;
    font-weight: 600;
}
.hp-latest-card__meta i {
    width: 18px;
    color: var(--rp-600);
    text-align: center;
    flex-shrink: 0;
}
.hp-latest--rental .hp-latest-card__meta i {
    color: #28aa85;
}
.hp-latest-card__meta span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hp-latest-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    margin-top: auto;
    border-top: 1px solid var(--rp-100);
}
.hp-latest-card__foot strong {
    color: var(--rp-800);
    font-size: 0.95rem;
    font-weight: 900;
}
.hp-latest-card__foot span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--rg-500);
    font-size: 0.8rem;
    font-weight: 800;
    transition: color 0.25s;
}
.hp-latest-card:hover .hp-latest-card__foot span {
    color: #0da67b;
}
.hp-latest-nav {
    position: absolute;
    top: 42%;
    z-index: 4;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--rp-700);
    border: 1.5px solid var(--rp-200);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--tx);
}
.hp-latest-nav:hover {
    background: var(--rp-700);
    color: #fff;
    border-color: var(--rp-700);
    transform: translateY(-2px);
}
.hp-latest-nav.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}
.hp-latest-nav--next {
    inset-inline-end: 0;
}
.hp-latest-nav--prev {
    inset-inline-start: 0;
}
.hp-latest--rental .hp-latest-nav {
    color: #28aa85;
    border-color: #c4dfd7;
}
.hp-latest--rental .hp-latest-nav:hover {
    background: #28aa85;
    color: #fff;
    border-color: #28aa85;
}
.hp-latest-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 7px;
}
.hp-latest-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: 1;
    background: var(--rp-200);
    transition: var(--tx);
}
.hp-latest-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 999px;
    background: var(--rp-700);
}
.hp-latest--rental .hp-latest-pagination .swiper-pagination-bullet {
    background: #c4dfd7;
}
.hp-latest--rental .hp-latest-pagination .swiper-pagination-bullet-active {
    background: #28aa85;
}
.hp-latest__more {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}
.hp-latest__empty {
    grid-column: 1 / -1;
    padding: 42px 24px;
    border: 1.5px dashed var(--rp-200);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.72);
    text-align: center;
}
.hp-latest__empty h3 {
    color: var(--rg-900);
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 8px;
}
.hp-latest__empty p {
    color: var(--rg-500);
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .hp-latest__slider-wrap {
        padding-inline: 0;
    }
    .hp-latest-nav {
        display: none;
    }
}

/* ==============================
   3. ABOUT SECTION
   ============================== */
.hp-about {
    padding: 96px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.hp-about::before {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    top: -180px;
    inset-inline-end: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 166, 123, 0.07), transparent 70%);
    pointer-events: none;
}
.hp-about > .container { position: relative; z-index: 1; }
.hp-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 900px) {
    .hp-about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* Image column */
.hp-about__media {
    position: relative;
}
/* decorative offset frame behind the image */
.hp-about__media::before {
    content: "";
    position: absolute;
    inset: 22px -22px -22px 22px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(13, 166, 123, 0.12), rgba(22, 36, 62, 0.1));
    z-index: 0;
}
.hp-about__img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 26px 60px rgba(22, 36, 62, 0.16);
    border: 5px solid #fff;
}
.hp-about__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.hp-about__media:hover .hp-about__img img { transform: scale(1.05); }

.hp-about__badge {
    position: absolute;
    z-index: 2;
    bottom: -18px;
    inset-inline-end: -18px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 18px 24px;
    box-shadow: 0 20px 44px rgba(22, 36, 62, 0.18);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--rp-100);
    min-width: 220px;
}
.hp-about__badge-ico {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0da67b, #0a8763);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(13, 166, 123, 0.34);
}
.hp-about__badge h4 {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--rg-900);
    margin-bottom: 3px;
}
.hp-about__badge p {
    font-size: 0.76rem;
    color: var(--rg-500);
}
.hp-about__badge a {
    font-size: 0.84rem;
    font-weight: 800;
    color: #0da67b;
}

/* Text column */
.hp-about__copy h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 900;
    color: var(--rg-900);
    line-height: 1.3;
    margin-bottom: 16px;
}
.hp-about__copy p {
    font-size: 0.96rem;
    color: var(--rg-500);
    line-height: 1.9;
    margin-bottom: 14px;
}

.hp-about__points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin: 24px 0;
}
.hp-about__points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--rg-700);
}
.hp-about__points li::before {
    content: "";
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: rgba(13, 166, 123, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230da67b'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid rgba(13, 166, 123, 0.28);
}

/* CTA buttons */
.hp-about__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.hp-about__btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.95rem;
    font-weight: 800;
    padding: 13px 26px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--tx);
}
.hp-about__btn i { transition: transform 0.3s var(--ease); }
.hp-about__btn:not(.hp-about__btn--ghost) {
    background: linear-gradient(135deg, #0da67b, #0a8763);
    color: #fff;
    box-shadow: 0 8px 26px rgba(13, 166, 123, 0.32);
}
.hp-about__btn:not(.hp-about__btn--ghost):hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 38px rgba(13, 166, 123, 0.46);
    color: #fff;
}
.hp-about__btn:not(.hp-about__btn--ghost):hover i { transform: translateX(-4px); }
.hp-about__btn--ghost {
    background: #fff;
    color: var(--rp-900);
    border: 1.5px solid var(--rp-200);
}
.hp-about__btn--ghost:hover {
    border-color: #0da67b;
    color: #0da67b;
    transform: translateY(-3px);
}

/* Mini stat grid */
.hp-about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 30px;
}
.hp-about__stat {
    background: var(--rp-50);
    border: 1.5px solid var(--rp-200);
    border-radius: var(--radius-md);
    padding: 22px;
    text-align: center;
    transition: var(--tx);
}
.hp-about__stat:hover {
    border-color: var(--rp-400);
    box-shadow: var(--shadow-pp);
    transform: translateY(-2px);
}
.hp-about__stat strong {
    display: block;
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--rp-700);
    line-height: 1;
    margin-bottom: 6px;
}
.hp-about__stat span {
    font-size: 0.8rem;
    color: var(--rg-500);
    font-weight: 600;
}

/* ==============================
   4. NATIONALITIES SECTION
   ============================== */
.hp-nat {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: #0b1220;
    background-image: url("../images/countries-bg.jpeg");
    background-size: cover;
    background-position: center 42%;
    background-repeat: no-repeat;
}
/* readability overlay — darker at top (header) & bottom, lets the map glow through the middle */
.hp-nat::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(9, 16, 30, 0.9) 0%, rgba(9, 16, 30, 0.5) 34%, rgba(9, 16, 30, 0.55) 66%, rgba(9, 16, 30, 0.88) 100%),
        radial-gradient(120% 80% at 50% 30%, rgba(13, 166, 123, 0.12), transparent 60%);
    pointer-events: none;
}
.hp-nat > .container { position: relative; z-index: 1; }
.hp-nat .sh-badge {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.24);
    color: rgba(255, 255, 255, 0.92);
}
.hp-nat .sh-title {
    color: #fff;
}
.hp-nat .sh-sub {
    color: rgba(255, 255, 255, 0.75);
}

.hp-nat__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}
.hp-nat-card {
    background: rgba(11, 18, 32, 0.42);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--tx);
}
.hp-nat-card:hover {
    background: rgba(11, 18, 32, 0.55);
    transform: translateY(-7px);
    border-color: rgba(13, 166, 123, 0.6);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.4);
}
.hp-nat-card__flag {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(13, 166, 123, 0.5);
    flex-shrink: 0;
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.hp-nat-card:hover .hp-nat-card__flag {
    border-color: #0da67b;
    transform: scale(1.06);
}
.hp-nat-card__flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hp-nat-card__name {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
}

.hp-nat-card__meta {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.hp-nat-card__line {
    display: flex;
    justify-content: space-between;
    font-size: 0.76rem;
}
.hp-nat-card__line .lbl {
    color: rgba(255, 255, 255, 0.58);
}
.hp-nat-card__line .val {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.hp-nat-card__price {
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
    background: rgba(13, 166, 123, 0.2);
    border: 1px solid rgba(13, 166, 123, 0.34);
    padding: 8px 14px;
    border-radius: 10px;
    width: 100%;
}
.hp-nat-card__cta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
    font-weight: 700;
    transition: color 0.3s;
}
.hp-nat-card:hover .hp-nat-card__cta {
    color: #2ee6ad;
}
.hp-nat-card__cta svg {
    width: 14px;
    height: 14px;
}

/* ==============================
   5. WHY CHOOSE US
   ============================== */
.hp-why {
    padding: 96px 0;
    background: var(--rg-50);
}
.hp-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.hp-why-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--rp-200);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--tx-slow);
}
.hp-why-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rp-800), var(--rp-400));
    transform: scaleX(0);
    transition: transform 0.42s var(--ease);
    transform-origin: right;
}
.hp-why-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.hp-why-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-pp);
    border-color: var(--rp-400);
}

.hp-why-card__ico {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, var(--rp-100), var(--rp-200));
    color: var(--rp-700);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tx);
}
.hp-why-card:hover .hp-why-card__ico {
    background: linear-gradient(135deg, var(--rp-800), var(--rp-500));
    color: #fff;
    transform: scale(1.1) rotate(-6deg);
}
.hp-why-card h3 {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--rg-900);
    margin-bottom: 10px;
}
.hp-why-card p {
    font-size: 0.88rem;
    color: var(--rg-500);
    line-height: 1.82;
}

/* ==============================
   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
   ============================== */
.hp-proc {
    padding: 96px 0;
    background: #fff;
}

.hp-proc__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.hp-proc__tab {
    padding: 11px 30px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    font-family: "Tajawal", sans-serif;
    cursor: pointer;
    border: 2px solid var(--rp-400);
    background: transparent;
    color: var(--rp-700);
    transition: var(--tx);
}
.hp-proc__tab.active {
    background: var(--rp-700);
    border-color: var(--rp-700);
    color: #fff;
}

.hp-proc__panel {
    display: none;
}
.hp-proc__panel.active {
    display: block;
}

.hp-proc__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
    position: relative;
}
.hp-proc__steps::before {
    content: "";
    position: absolute;
    top: 50px;
    inset-inline-start: 50px;
    inset-inline-end: 50px;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--rp-200),
        var(--rp-400),
        var(--rp-200)
    );
    z-index: 0;
}
@media (max-width: 768px) {
    .hp-proc__steps::before {
        display: none;
    }
}

.hp-proc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 32px 20px;
    background: #fff;
    border: 1.5px solid var(--rp-200);
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    transition: var(--tx);
}
.hp-proc-step:hover {
    border-color: var(--rp-500);
    box-shadow: var(--shadow-pp);
    transform: translateY(-5px);
}

.hp-proc-step__num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rp-800), var(--rp-500));
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-pp);
    flex-shrink: 0;
}
.hp-proc-step__ico {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: var(--rp-100);
    color: var(--rp-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.hp-proc-step h4 {
    font-size: 0.97rem;
    font-weight: 800;
    color: var(--rg-900);
    margin-bottom: 6px;
}
.hp-proc-step p {
    font-size: 0.84rem;
    color: var(--rg-500);
    line-height: 1.72;
}

/* ==============================
   8. CUSTOMER SERVICE AGENTS
   ============================== */
.hp-agents {
    padding: 96px 0;
    background: var(--rg-50);
}
.hp-agents__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.hp-agent-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--rp-200);
    padding: 32px 28px;
    text-align: center;
    transition: var(--tx);
    position: relative;
    overflow: hidden;
}
.hp-agent-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 84px;
    background: linear-gradient(135deg, var(--rp-100), var(--rp-200));
    border-radius: var(--radius-lg) var(--radius-lg) 60% 60%;
}
.hp-agent-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-pp);
    border-color: var(--rp-400);
}

.hp-agent-card__ava {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--rp-800), var(--rp-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    margin: 0 auto 16px;
    border: 4px solid #fff;
    box-shadow: var(--shadow-pp);
}
.hp-agent-card__name {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--rg-900);
    margin-bottom: 4px;
}
.hp-agent-card__role {
    font-size: 0.8rem;
    color: var(--rp-600);
    font-weight: 700;
    margin-bottom: 16px;
}
.hp-agent-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    color: #31cfa2;
    margin-bottom: 20px;
    font-size: 0.88rem;
}
.hp-agent-card__btns {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.hp-agent-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--tx);
    border: none;
    cursor: pointer;
}
.hp-agent-btn.wa {
    background: #25d366;
    color: #fff;
}
.hp-agent-btn.wa:hover {
    background: #28ac86;
    transform: scale(1.12);
}
.hp-agent-btn.tel {
    background: var(--rp-100);
    color: var(--rp-700);
}
.hp-agent-btn.tel:hover {
    background: var(--rp-700);
    color: #fff;
    transform: scale(1.12);
}

/* ==============================
   9. CTA BANNER
   ============================== */
.hp-cta {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--rp-900), var(--rp-700));
}
.hp-cta::before {
    content: "";
    position: absolute;
    inset: -50%;
    background: radial-gradient(
        ellipse at center,
        rgba(177, 193, 223, 0.22) 0%,
        transparent 55%
    );
}
.hp-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.hp-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hp-cta__h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
}
.hp-cta__sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.04rem;
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto 32px;
}
.hp-cta__btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hp-cta__btn-w {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--rp-800);
    font-size: 1rem;
    font-weight: 800;
    font-family: "Tajawal", sans-serif;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    transition: var(--tx);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}
.hp-cta__btn-w:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
    color: var(--rp-800);
}

.hp-cta__btn-o {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff !important;
    font-size: 1rem;
    font-weight: 700;
    font-family: "Tajawal", sans-serif;
    padding: 13px 32px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.46);
    transition: var(--tx);
}
.hp-cta__btn-o:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    transform: translateY(-3px);
}
/* ==============================
   1. HERO — video (left) + white content (right)
   ============================== */
.vh-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(120% 85% at 100% 0%, rgba(13, 166, 123, 0.10) 0%, transparent 46%),
        radial-gradient(110% 90% at 0% 100%, rgba(45, 84, 155, 0.08) 0%, transparent 52%),
        linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}
/* soft decorative halos behind the content */
.vh-hero::before,
.vh-hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}
.vh-hero::before {
    width: 440px;
    height: 440px;
    top: -150px;
    inset-inline-end: 30%;
    background: radial-gradient(circle, rgba(13, 166, 123, 0.20), transparent 70%);
}
.vh-hero::after {
    width: 360px;
    height: 360px;
    bottom: -140px;
    inset-inline-end: 12%;
    background: radial-gradient(circle, rgba(45, 84, 155, 0.16), transparent 70%);
}
.vh-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    min-height: 100svh;
}

/* ── Video side (left) — floating rounded panel ── */
.vh-hero__video-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
    padding: clamp(96px, 11vh, 128px) clamp(18px, 3vw, 44px) clamp(48px, 6vh, 76px);
}
/* colored halo behind the video card */
.vh-hero__video-col::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: min(86%, 540px);
    height: min(78svh, 720px);
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 44px;
    background: linear-gradient(155deg, var(--rt-500) 0%, var(--rp-700) 100%);
    filter: blur(52px);
    opacity: 0.38;
}
.vh-hero__video-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    height: min(78svh, 720px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 44px 90px -34px rgba(11, 18, 32, 0.62), 0 0 0 1px rgba(255, 255, 255, 0.5);
    animation: vhFrameIn 1s var(--ease) 0.1s both;
}
@keyframes vhFrameIn {
    from { opacity: 0; transform: translateY(28px) scale(0.98); }
    to   { opacity: 1; transform: none; }
}
.vh-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    animation: vhVideoZoom 18s ease-in-out infinite alternate;
}
@keyframes vhVideoZoom {
    from { transform: scale(1.06); }
    to   { transform: scale(1.16); }
}
.vh-hero__video-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(11, 18, 32, 0) 42%, rgba(11, 18, 32, 0.55) 100%),
        linear-gradient(125deg, rgba(11, 18, 32, 0.34) 0%, rgba(11, 18, 32, 0.05) 46%, rgba(13, 166, 123, 0.22) 100%);
}
.vh-hero__vbadge {
    position: absolute;
    z-index: 2;
    inset-block-end: 22px;
    inset-inline-start: 22px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border-radius: 14px;
    color: #fff;
    font-weight: 700;
    font-size: 0.86rem;
    background: rgba(255, 255, 255, 0.14);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    animation: vhIn 0.9s var(--ease) 0.55s both;
}
.vh-hero__vbadge .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2ee6ad;
    animation: livePulse 1.6s ease infinite;
}
/* floating gold-rating trust card */
.vh-hero__vcard {
    position: absolute;
    z-index: 2;
    inset-block-start: 20px;
    inset-inline-start: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px 11px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 34px rgba(11, 18, 32, 0.22);
    animation: vhIn 0.9s var(--ease) 0.75s both;
}
.vh-hero__vcard-ico {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #5a3d05;
    font-size: 17px;
    background: linear-gradient(135deg, #f7cf63, #e0a020);
    box-shadow: 0 6px 16px rgba(224, 160, 32, 0.42);
}
.vh-hero__vcard-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
    color: #fff;
}
.vh-hero__vcard-txt strong { font-size: 0.9rem; font-weight: 800; }
.vh-hero__vcard-txt small { font-size: 0.72rem; opacity: 0.86; }

/* ── Content side (right, white, vertically centered) ── */
.vh-hero__content-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(96px, 11vh, 128px) clamp(24px, 5vw, 72px) clamp(56px, 7vh, 80px);
}
.vh-hc {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* entrance */
.vh-hero .anim {
    opacity: 0;
    transform: translateY(30px);
    animation: vhIn 0.9s var(--ease) forwards;
    animation-delay: var(--d, 0s);
}
@keyframes vhIn {
    to { opacity: 1; transform: none; }
}

.vh-hc__badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(13, 166, 123, 0.08);
    color: var(--rt-500);
    border: 1px solid rgba(13, 166, 123, 0.22);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 7px 18px;
    border-radius: 999px;
}
.vh-hc__badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rt-500);
    animation: livePulse 1.6s ease infinite;
}

/* trust line under actions */
.vh-hc__trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 2px;
    color: var(--rg-500);
    font-size: 0.9rem;
    font-weight: 700;
}
.vh-hc__trust b { color: var(--rp-900); }
.vh-hc__stars {
    display: inline-flex;
    gap: 3px;
    color: #f6b73c;
    font-size: 0.82rem;
}

/* content swiper */
.vhHeroSwiper {
    width: 100%;
    overflow: hidden;
}
.vhHeroSwiper .swiper-slide {
    height: auto;
}
.vh-cslide {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.vh-cslide__img {
    width: 100%;
    height: clamp(160px, 25vh, 230px);
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(22, 36, 62, 0.16);
}
.vh-cslide__title {
    font-size: clamp(1.7rem, 2.9vw, 2.65rem);
    font-weight: 900;
    line-height: 1.22;
    letter-spacing: -0.01em;
    color: var(--rp-900);
}
.vh-cslide__desc {
    font-size: 1.04rem;
    line-height: 1.9;
    color: var(--rg-500);
}
/* staggered per-slide reveal */
.vh-cslide__img,
.vh-cslide__title,
.vh-cslide__desc,
.vh-cslide .vh-hero__actions {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.swiper-slide-active .vh-cslide__img { opacity: 1; transform: none; transition-delay: 0.05s; }
.swiper-slide-active .vh-cslide__title { opacity: 1; transform: none; transition-delay: 0.18s; }
.swiper-slide-active .vh-cslide__desc { opacity: 1; transform: none; transition-delay: 0.3s; }
.swiper-slide-active .vh-cslide .vh-hero__actions { opacity: 1; transform: none; transition-delay: 0.42s; }
.vh-cslide .vh-hero__actions { margin-top: 6px; }

/* dots */
.vhHeroSwiper__pg {
    display: flex;
    gap: 7px;
    margin-top: 2px;
}
.vhHeroSwiper__pg .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: var(--rp-200);
    opacity: 1;
    transition: all 0.3s ease;
}
.vhHeroSwiper__pg .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 5px;
    background: var(--rt-500);
}

/* actions — sit with the swiper */
.vh-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}
.vh-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.97rem;
    font-weight: 800;
    font-family: "Tajawal", sans-serif;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    transition: var(--tx);
    white-space: nowrap;
}
.vh-btn i { font-size: 1.02em; }
.vh-btn--solid {
    background: linear-gradient(135deg, var(--rt-500), var(--rt-600));
    color: #fff !important;
    box-shadow: 0 8px 28px rgba(13, 166, 123, 0.32);
}
.vh-btn--solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(13, 166, 123, 0.46);
    color: #fff;
}
.vh-btn--orange {
    background: var(--rp-900);
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(22, 36, 62, 0.24);
}
.vh-btn--orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(22, 36, 62, 0.34);
    color: #fff;
}
.vh-btn--glass {
    background: #fff;
    color: var(--rp-900);
    border: 1.5px solid var(--rp-200);
}
.vh-btn--glass:hover {
    transform: translateY(-3px);
    border-color: var(--rt-500);
    color: var(--rt-500);
}

/* ==============================
   1b. HERO STATS — white band
   ============================== */
.vh-stats {
    background: #fff;
    position: relative;
    z-index: 3;
    padding: clamp(30px, 4vw, 48px) 0;
    border-top: 1px solid rgba(22, 36, 62, 0.06);
}
.vh-stats__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.vh-stat {
    position: relative;
    text-align: center;
    padding: 16px 18px;
    border-radius: 18px;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.vh-stat::after {
    content: "";
    position: absolute;
    inset-block: 24%;
    inset-inline-end: 0;
    width: 1px;
    background: linear-gradient(rgba(22, 36, 62, 0), rgba(22, 36, 62, 0.12), rgba(22, 36, 62, 0));
}
.vh-stat:last-child::after { display: none; }
.vh-stat:hover {
    background: rgba(13, 166, 123, 0.06);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(13, 166, 123, 0.12);
}
.vh-stat__num {
    display: block;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(120deg, #16243e 0%, #0da67b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-variant-numeric: tabular-nums;
}
.vh-stat__lbl {
    display: block;
    margin-top: 8px;
    color: var(--rg-500);
    font-weight: 700;
    font-size: 0.95rem;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .vh-hero__grid { grid-template-columns: 1fr; }
    .vh-hero__video-col {
        order: 1;
        min-height: auto;
        padding: clamp(84px, 12vh, 104px) 18px 8px;
    }
    .vh-hero__video-frame { height: clamp(230px, 40svh, 340px); border-radius: 24px; }
    .vh-hero__video-col::before { height: clamp(230px, 40svh, 340px); }
    .vh-hero__content-col {
        order: 2;
        min-height: auto;
        padding: 36px 22px 56px;
    }
    .vh-hc { max-width: 640px; margin: 0 auto; }
    .vh-hero::before { inset-inline-end: 8%; }
}
@media (max-width: 767px) {
    .vh-cslide__title { font-size: clamp(1.5rem, 6vw, 2rem); }
    .vh-cslide__img { height: clamp(150px, 30vh, 210px); }
    .vh-hero__vcard-txt small { display: none; }
    .vh-stats__row { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .vh-stat::after { display: none; }
    .vh-stat { padding: 18px 12px; }
}
@media (max-width: 480px) {
    .vh-hero__video-frame { height: clamp(200px, 34svh, 280px); }
    .vh-hero__video-col::before { height: clamp(200px, 34svh, 280px); }
    .vh-btn { flex: 1 1 100%; justify-content: center; }
}


/* ==============================
   10. PARTNERS SECTION
   ============================== */
.hp-partners {
    padding: 72px 0;
    background: #f9fafb;
    border-bottom: 1px solid var(--rp-100);
    position: relative;
    overflow: hidden;
}
.hp-partners::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 84, 155, .07) 0%, transparent 70%);
    pointer-events: none;
}
.hp-partners::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 166, 123, .07) 0%, transparent 70%);
    pointer-events: none;
}
.hp-partners .referenceLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(45, 84, 155, .1);
    padding: 22px 24px;
    height: 100px;
    box-shadow: 0 4px 20px rgba(45, 84, 155, .06);
    transition: var(--tx);
}
.hp-partners .referenceLogo:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(45, 84, 155, .14);
    border-color: rgba(45, 84, 155, .3);
}
.hp-partners .referenceLogo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--tx);
}
.hp-partners .referenceLogo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
.hp-partners .swiper-pagination {
    margin-top: 32px;
    position: relative;
    bottom: 0 !important;
}
.hp-partners .swiper-pagination-bullet { background: #869fcd; opacity: .4; }
.hp-partners .swiper-pagination-bullet-active { background: #2d549b; opacity: 1; }

/* ==============================
   11. CONTACT SECTION
   ============================== */
.hp-contact {
    padding: 96px 0;
    background: var(--rg-50);
}
.hp-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
    align-items: start;
}
@media (max-width: 900px) {
    .hp-contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.hp-contact-info h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--rg-900);
    margin-bottom: 12px;
}
.hp-contact-info > p {
    font-size: 0.95rem;
    color: var(--rg-500);
    line-height: 1.85;
    margin-bottom: 32px;
}

.hp-cinfo-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}
.hp-cinfo-item__ico {
    width: 50px;
    height: 50px;
    background: var(--rp-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rp-700);
    font-size: 18px;
    flex-shrink: 0;
}
.hp-cinfo-item h6 {
    font-size: 0.82rem;
    color: var(--rg-500);
    font-weight: 600;
    margin-bottom: 2px;
}
.hp-cinfo-item p {
    font-size: 0.96rem;
    color: var(--rg-800);
    font-weight: 700;
}

.hp-cform-wrap {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 42px;
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--rp-200);
    position: relative;
    overflow: hidden;
}
.hp-cform-wrap::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--rp-100), transparent 68%);
    pointer-events: none;
}
.hp-cform-wrap::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--rp-50), transparent 68%);
    pointer-events: none;
}
.hp-cform-wrap form {
    position: relative;
    z-index: 1;
}

.hp-fg {
    margin-bottom: 20px;
}
.hp-fg label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--rg-700);
    margin-bottom: 8px;
}
.hp-fg label i {
    color: var(--rp-600);
}
.hp-fc {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--rg-300);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: "Tajawal", sans-serif;
    color: var(--rg-800);
    background: #fff;
    transition: var(--tx);
    outline: none;
}
.hp-fc:focus {
    border-color: var(--rp-500);
    box-shadow: 0 0 0 3px rgba(92, 127, 191, 0.12);
}
textarea.hp-fc {
    resize: vertical;
}

.hp-frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 600px) {
    .hp-frow {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   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 #16243E · teal #0DA67B          (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(22, 36, 62, 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(22, 36, 62, 0.05);
    transition: color 0.4s var(--ease);
}
.hp .hp-why-card:hover::before { color: rgba(13, 166, 123, 0.16); }
.hp .hp-why-card::after {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #16243e, #0da67b);
    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(13, 166, 123, 0.14);
    border-color: transparent;
}
.hp .hp-why-card__ico {
    width: 60px;
    height: 60px;
    margin: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #0da67b, #0a8763);
    color: #fff;
    font-size: 24px;
    box-shadow: 0 10px 24px rgba(13, 166, 123, 0.3);
}
.hp .hp-why-card:hover .hp-why-card__ico {
    background: linear-gradient(135deg, #16243e, #2d549b);
    transform: scale(1.06) rotate(-8deg);
}
.hp .hp-why-card h3 { color: var(--rp-900); font-size: 1.12rem; margin: 0; }
.hp .hp-why-card p { color: var(--rg-500); margin: 0; }

/* ── 7. REQUIREMENTS → left-aligned numbered step cards ── */
.hp .hp-proc__tab {
    border: 1.5px solid rgba(13, 166, 123, 0.4);
    color: #0da67b;
    background: transparent;
}
.hp .hp-proc__tab.active {
    background: linear-gradient(135deg, #0da67b, #0a8763);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 22px rgba(13, 166, 123, 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(22, 36, 62, 0.05);
}
.hp .hp-proc-step:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 22px 48px rgba(13, 166, 123, 0.14);
}
.hp .hp-proc-step__num {
    position: absolute;
    top: 22px;
    inset-inline-end: 22px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(13, 166, 123, 0.1);
    color: #0da67b;
    font-size: 1rem;
    box-shadow: none;
}
.hp .hp-proc-step__ico {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0da67b, #0a8763);
    color: #fff;
    font-size: 24px;
    box-shadow: 0 10px 24px rgba(13, 166, 123, 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; }

/* ── 8. AGENTS → full gradient-banner contact cards ── */
.hp .hp-agent-card {
    padding: 0 26px 28px;
    text-align: center;
    border: 1px solid var(--rp-100);
}
.hp .hp-agent-card::before {
    height: 92px;
    left: 0;
    right: 0;
    border-radius: 0;
    background: linear-gradient(135deg, #16243e 0%, #0da67b 100%);
}
.hp .hp-agent-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 24px 52px rgba(13, 166, 123, 0.16);
}
.hp .hp-agent-card__ava {
    margin: 46px auto 14px;
    background: #fff;
    color: #0da67b;
    border: 4px solid #fff;
    box-shadow: 0 10px 26px rgba(22, 36, 62, 0.22);
}
.hp .hp-agent-card__name { color: var(--rp-900); }
.hp .hp-agent-card__role { color: #0da67b; }
.hp .hp-agent-stars { color: #f5b301; }
.hp .hp-agent-btn { width: 48px; height: 48px; }
.hp .hp-agent-btn.tel {
    background: rgba(13, 166, 123, 0.12);
    color: #0a8763;
}
.hp .hp-agent-btn.tel:hover {
    background: linear-gradient(135deg, #0da67b, #0a8763);
    color: #fff;
    transform: scale(1.12);
}

/* ── 9. CTA BANNER → immersive animated gradient ── */
.hp .hp-cta {
    padding: 92px 0;
    background: linear-gradient(135deg, #16243e 0%, #123f4d 55%, #0a8763 100%);
}
.hp .hp-cta::before {
    inset: -50%;
    background: radial-gradient(ellipse 40% 40% at 50% 40%, rgba(13, 166, 123, 0.35), transparent 60%);
    animation: ctaGlow 9s ease-in-out infinite alternate;
}
.hp .hp-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 14% 26%, rgba(255, 255, 255, 0.06) 0 8px, transparent 9px),
        radial-gradient(circle at 84% 70%, rgba(255, 255, 255, 0.05) 0 12px, transparent 13px),
        radial-gradient(circle at 68% 18%, rgba(46, 230, 173, 0.14) 0 6px, transparent 7px);
    animation: ctaDrift 12s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes ctaGlow {
    from { transform: translate(-4%, -3%) scale(1); opacity: 0.8; }
    to   { transform: translate(4%, 3%) scale(1.15); opacity: 1; }
}
@keyframes ctaDrift {
    from { transform: translateY(0); }
    to   { transform: translateY(-14px); }
}
.hp .hp-cta__badge {
    background: rgba(46, 230, 173, 0.16);
    border-color: rgba(46, 230, 173, 0.4);
    color: #eafff8;
}
.hp .hp-cta__btn-w { color: #0a8763; }
.hp .hp-cta__btn-w:hover { color: #0a8763; }

/* ── 11. CONTACT → unified elevated split card ── */
.hp .hp-contact { background: var(--rg-50); }
.hp .hp-contact__grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 0;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--rp-100);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(22, 36, 62, 0.14);
}
@media (max-width: 900px) {
    .hp .hp-contact__grid { grid-template-columns: 1fr; }
}
.hp .hp-contact-info {
    position: relative;
    overflow: hidden;
    padding: 46px 40px;
    background: linear-gradient(160deg, #16243e 0%, #0f1826 100%);
    color: #fff;
}
.hp .hp-contact-info::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    top: -120px;
    inset-inline-start: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 166, 123, 0.35), transparent 70%);
    pointer-events: none;
}
.hp .hp-contact-info > * { position: relative; z-index: 1; }
.hp .hp-contact-info .sh-badge {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
    color: #fff;
}
.hp .hp-contact-info h2 { color: #fff; }
.hp .hp-contact-info > p { color: rgba(255, 255, 255, 0.72); }
.hp .hp-cinfo-item__ico {
    background: linear-gradient(135deg, #0da67b, #0a8763);
    color: #fff;
    box-shadow: 0 8px 20px rgba(13, 166, 123, 0.34);
}
.hp .hp-cinfo-item h6 { color: rgba(255, 255, 255, 0.6); }
.hp .hp-cinfo-item p { color: #fff; }
.hp .hp-cform-wrap {
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    padding: 46px 40px;
}
.hp .hp-cform-wrap::before,
.hp .hp-cform-wrap::after { display: none; }
.hp .hp-fg label i { color: #0da67b; }
.hp .hp-fc:focus {
    border-color: #0da67b;
    box-shadow: 0 0 0 3px rgba(13, 166, 123, 0.14);
}

/* ══════════════════════════════════════════
   MUSANED — verified profile section
   ══════════════════════════════════════════ */
.hp-musaned { padding: 90px 0; background: var(--rg-50); }
.hp-msn__card {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #16243e 0%, #0f1826 100%);
    border-radius: 28px;
    padding: 36px clamp(22px, 4vw, 44px);
    box-shadow: 0 30px 70px rgba(22, 36, 62, 0.2);
    color: #fff;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.hp-msn__card::before {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 166, 123, 0.18), transparent 70%);
    top: -160px;
    inset-inline-end: -120px;
    pointer-events: none;
}
.hp-msn__card:hover { transform: translateY(-6px); box-shadow: 0 42px 84px rgba(13, 166, 123, 0.22); }
.hp-msn__card > * { position: relative; z-index: 1; }

.hp-msn__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hp-msn__office { display: flex; align-items: center; gap: 16px; }
.hp-msn__seal {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    background: #fff;
    display: grid;
    place-items: center;
    padding: 8px;
    flex-shrink: 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.hp-msn__seal img { width: 100%; height: 100%; object-fit: contain; }
.hp-msn__office-txt h3 { color: #fff; font-size: 1.3rem; font-weight: 900; margin: 0 0 7px; }
.hp-msn__rank {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #f4cf6a, #dca62a);
    color: #3a2a06;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 5px 14px;
    border-radius: 100px;
    box-shadow: 0 6px 16px rgba(220, 166, 42, 0.4);
}
.hp-msn__view { display: inline-flex; align-items: center; gap: 8px; color: #2ee6ad; font-weight: 800; font-size: 0.9rem; }
.hp-msn__view i { font-size: 0.85em; transition: transform 0.3s ease; }
.hp-msn__card:hover .hp-msn__view i { transform: translate(-3px, -3px); }

.hp-msn__block { margin-bottom: 24px; }
.hp-msn__block-title {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hp-msn__block-title::before {
    content: "";
    width: 5px;
    height: 20px;
    border-radius: 3px;
    background: linear-gradient(#0da67b, #2ee6ad);
}
.hp-msn__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.hp-msn-stat,
.hp-msn-rev {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px 14px;
    text-align: center;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.hp-msn-stat:hover,
.hp-msn-rev:hover { background: rgba(13, 166, 123, 0.1); border-color: rgba(13, 166, 123, 0.4); transform: translateY(-3px); }
.hp-msn-stat strong { display: block; font-size: 1.7rem; font-weight: 900; color: #2ee6ad; line-height: 1; margin-bottom: 6px; font-variant-numeric: tabular-nums; }
.hp-msn-stat span,
.hp-msn-rev span:last-child { font-size: 0.78rem; color: rgba(255, 255, 255, 0.65); font-weight: 600; }
.hp-msn-stars { display: block; color: #f4cf6a; font-size: 1rem; letter-spacing: 2px; margin-bottom: 6px; }

.hp-msn__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    padding: 18px 0;
    margin-bottom: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hp-msn__contacts span { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.82); font-weight: 600; font-size: 0.9rem; direction: ltr; }
.hp-msn__contacts span:first-child { direction: rtl; }
.hp-msn__contacts i { color: #2ee6ad; }

.hp-msn__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #0da67b, #0a8763);
    color: #fff;
    font-weight: 800;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(13, 166, 123, 0.35);
    transition: box-shadow 0.3s ease;
}
.hp-msn__cta i { font-size: 0.85em; transition: transform 0.3s ease; }
.hp-msn__card:hover .hp-msn__cta { box-shadow: 0 18px 44px rgba(13, 166, 123, 0.5); }
.hp-msn__card:hover .hp-msn__cta i { transform: translate(-3px, -3px); }

@media (max-width: 576px) {
    .hp-msn__head { flex-direction: column; align-items: flex-start; }
    .hp-msn-stat strong { font-size: 1.4rem; }
    .hp-msn__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==============================
   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(22, 36, 62, 0.08);
    border-radius: 18px;
    box-shadow: 0 16px 44px rgba(22, 36, 62, 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(13, 166, 123, 0.32);
    box-shadow: 0 24px 60px rgba(13, 166, 123, 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(22, 36, 62, 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(22, 36, 62, 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(22, 36, 62, 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, #0da67b, #097255);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(13, 166, 123, 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: #0da67b;
    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: #0da67b;
    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(22, 36, 62, 0.14);
}
.offer-card__btn--outline:hover {
    border-color: #0da67b;
    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(22, 36, 62, 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(13, 166, 123, 0.1);
    color: #0da67b;
    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(22, 36, 62, 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(22, 36, 62, 0.08);
    box-shadow: 0 22px 58px rgba(22, 36, 62, 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, #0da67b, #097255);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 12px 32px rgba(13, 166, 123, 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(22, 36, 62, 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(22, 36, 62, 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(13, 166, 123, 0.1);
    color: #097255;
    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(22, 36, 62, 0.08);
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.offer-maid-card:hover {
    transform: translateY(-3px);
    border-color: rgba(13, 166, 123, 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%;
    }
}
