/* ==========================================================================
   YourHeal India — home page
   Built to the approved mockup. Everything is namespaced .yh-* and every
   heading states its own colour, because the legacy Doccure style.css puts an
   explicit colour on bare h1/h2/h3 which would otherwise beat inheritance.
   ========================================================================== */

:root {
    --yh-blue: #1d5fd1;
    --yh-blue-bright: #2f6fe0;
    --yh-blue-dark: #17499f;
    --yh-navy: #0f2b52;
    --yh-navy-deep: #0a1f3d;
    --yh-ink: #12294a;
    --yh-ink-soft: #1e3a5f;
    --yh-muted: #6b7c93;
    --yh-tint: #eff5fd;
    --yh-tint-2: #e6effc;
    --yh-line: #dde7f5;
    --yh-green: #22c55e;
    --yh-green-dark: #16a34a;
    --yh-star: #f5a623;
    --yh-shadow: 0 18px 40px -24px rgba(15, 43, 82, .30);
    --yh-shadow-lg: 0 30px 60px -30px rgba(15, 43, 82, .38);
}

.yh-shell {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    min-width: 0;
}

.yh-sec {
    padding: 58px 0;
}

.yh-sec--tint {
    background: var(--yh-tint);
}

.yh-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--yh-blue);
    margin-bottom: 10px;
}

.yh-h2 {
    font-size: 30px;
    line-height: 1.28;
    font-weight: 700;
    color: var(--yh-ink);
    margin: 0 0 10px;
}

.yh-sub {
    font-size: 15px;
    line-height: 1.65;
    color: var(--yh-muted);
    margin: 0;
}

.yh-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 34px;
}

/* ------------------------------------------------------------- buttons -- */

.yh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14.5px;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 22px;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.yh-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.yh-btn--primary {
    background: var(--yh-blue);
    color: #fff;
}

.yh-btn--primary:hover {
    background: var(--yh-blue-dark);
    color: #fff;
}

.yh-btn--outline {
    background: #fff;
    border-color: var(--yh-blue);
    color: var(--yh-blue);
}

.yh-btn--outline:hover {
    background: var(--yh-blue);
    color: #fff;
}

.yh-btn--green {
    background: var(--yh-green);
    color: #fff;
}

.yh-btn--green:hover {
    background: var(--yh-green-dark);
    color: #fff;
}

.yh-btn--block {
    width: 100%;
}

/* ---------------------------------------------------------------- hero -- */

.yh-hero {
    background: linear-gradient(180deg, #f4f8fe 0%, #ffffff 100%);
    padding: 22px 0 0;
}

.yh-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 452px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(120deg, #eaf2fe 0%, #f4f8ff 46%, #dceaff 100%);
}

.yh-hero__copy {
    position: relative;
    z-index: 2;
    padding: 46px 26px 40px 46px;
}

.yh-hero h1 {
    font-size: 40px;
    line-height: 1.24;
    font-weight: 700;
    color: var(--yh-ink);
    margin: 0 0 16px;
    letter-spacing: -.01em;
}

.yh-hero h1 em {
    font-style: normal;
    color: var(--yh-blue-bright);
}

.yh-hero__lead {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--yh-ink-soft);
    max-width: 420px;
    margin: 0 0 26px;
}

.yh-hero__media {
    position: absolute;
    inset: 0 0 0 44%;
    z-index: 1;
}

.yh-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% center;
    display: block;
}

.yh-hero__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, #eaf2fe 0%, rgba(234, 242, 254, 0) 24%);
}

/* trust badges */
.yh-trust {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    max-width: 560px;
}

.yh-trust__item {
    flex: 1 1 0;
    min-width: 148px;
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid #e3ecfa;
    border-radius: 11px;
    padding: 10px 11px;
    box-shadow: 0 10px 22px -16px rgba(15, 43, 82, .45);
}

.yh-trust__txt {
    min-width: 0;
}

.yh-trust__ico {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 8px;
    background: #e7f0ff;
    color: var(--yh-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.yh-trust__t {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--yh-ink);
    line-height: 1.3;
}

.yh-trust__s {
    display: block;
    font-size: 10.5px;
    color: var(--yh-muted);
    line-height: 1.3;
    margin-top: 2px;
}

/* --------------------------------------------------------- search card -- */

.yh-searchcard {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: -58px auto 0;
    background: #fff;
    border: 1px solid #e8eefa;
    border-radius: 14px;
    box-shadow: var(--yh-shadow-lg);
    padding: 8px 22px 20px;
}

.yh-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    border-bottom: 1px solid #eef2f9;
    margin-bottom: 18px;
}

.yh-tab {
    background: none;
    border: 0;
    border-bottom: 2px solid transparent;
    padding: 13px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--yh-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .15s, border-color .15s;
}

.yh-tab i {
    font-size: 14px;
}

.yh-tab.is-active {
    color: var(--yh-blue);
    border-bottom-color: var(--yh-blue);
}

.yh-searchform {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.yh-field {
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--yh-line);
    border-radius: 8px;
    padding: 0 13px;
    background: #fff;
    height: 46px;
}

.yh-field i {
    color: #9fb0c7;
    font-size: 14px;
}

.yh-field--city {
    flex: 0 1 210px;
    min-width: 170px;
}

.yh-field--q {
    flex: 1 1 340px;
    min-width: 200px;
}

.yh-field select,
.yh-field input {
    border: 0;
    outline: none;
    background: transparent;
    height: 44px;
    width: 100%;
    font-size: 14px;
    color: var(--yh-ink);
    box-shadow: none;
}

.yh-searchform .yh-btn {
    height: 46px;
    padding: 0 26px;
}

.yh-popular {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    font-size: 13px;
    color: var(--yh-muted);
}

.yh-popular b {
    color: var(--yh-ink-soft);
    font-weight: 600;
}

.yh-pill {
    display: inline-block;
    background: #f2f6fd;
    border: 1px solid #e5ecf8;
    border-radius: 6px;
    padding: 5px 11px;
    font-size: 12.5px;
    color: var(--yh-blue);
    text-decoration: none;
    transition: background .15s;
}

.yh-pill:hover {
    background: #e5eeff;
    color: var(--yh-blue-dark);
    text-decoration: none;
}

/* --------------------------------------------------------------- stats -- */

.yh-stats {
    background: #fff;
    padding: 34px 0;
}

.yh-stats__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.yh-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 4px 16px;
    border-right: 1px solid #e9eff8;
}

.yh-stat:last-child {
    border-right: 0;
}

.yh-stat__ico {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 50%;
    background: #eaf1ff;
    color: var(--yh-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.yh-stat__n {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--yh-ink);
    line-height: 1.2;
}

.yh-stat__l {
    display: block;
    font-size: 13px;
    color: var(--yh-muted);
    margin-top: 1px;
}

/* --------------------------------------------------------- specialties -- */

.yh-specs {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 12px;
}

.yh-spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    text-align: center;
}

.yh-spec:hover {
    text-decoration: none;
}

.yh-spec__circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2ebf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--yh-blue);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.yh-spec:hover .yh-spec__circle {
    transform: translateY(-4px);
    border-color: #b9d2f7;
    box-shadow: var(--yh-shadow);
}

.yh-spec__name {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--yh-ink-soft);
    line-height: 1.35;
}

.yh-spec--all .yh-spec__circle {
    background: var(--yh-blue);
    border-color: var(--yh-blue);
    color: #fff;
}

/* ------------------------------------------------------------- 4 steps -- */

.yh-split {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.yh-split > * {
    min-width: 0;
}

.yh-split .yh-h2 {
    font-size: 26px;
}

.yh-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.yh-steps::before {
    content: "";
    position: absolute;
    top: 56px;
    left: 12%;
    right: 12%;
    border-top: 2px dashed #c9dbf5;
    z-index: 0;
}

.yh-step {
    position: relative;
    z-index: 1;
    background: #fff;
    border: 1px solid #e6eefa;
    border-radius: 12px;
    padding: 30px 16px 20px;
    text-align: center;
    box-shadow: 0 10px 26px -22px rgba(15, 43, 82, .5);
}

.yh-step__n {
    position: absolute;
    top: 10px;
    left: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--yh-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yh-step__ico {
    width: 46px;
    height: 46px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #e6f7ee;
    color: var(--yh-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.yh-step h3 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--yh-ink);
    margin: 0 0 6px;
}

.yh-step p {
    font-size: 12px;
    line-height: 1.55;
    color: var(--yh-muted);
    margin: 0;
}

/* ------------------------------------------------------------ carousel -- */

.yh-carousel {
    position: relative;
    min-width: 0;
    max-width: 100%;
}

.yh-track {
    display: flex;
    max-width: 100%;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px 2px 10px;
    scrollbar-width: none;
}

.yh-track::-webkit-scrollbar {
    display: none;
}

.yh-track > * {
    scroll-snap-align: start;
    flex: 0 0 auto;
}

.yh-arrow {
    position: absolute;
    top: 44%;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--yh-line);
    color: var(--yh-ink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--yh-shadow);
    z-index: 3;
    font-size: 13px;
    transition: background .15s, color .15s;
}

.yh-arrow:hover {
    background: var(--yh-blue);
    border-color: var(--yh-blue);
    color: #fff;
}

.yh-arrow--prev {
    left: -14px;
}

.yh-arrow--next {
    right: -14px;
}

.yh-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.yh-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cfdcee;
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: width .2s, background .2s;
}

.yh-dot.is-active {
    width: 22px;
    border-radius: 5px;
    background: var(--yh-blue);
}

/* ------------------------------------------------------- doctor cards -- */

.yh-doc {
    width: 226px;
    background: #fff;
    border: 1px solid #e6eefa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px -26px rgba(15, 43, 82, .55);
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}

.yh-doc:hover {
    transform: translateY(-4px);
    box-shadow: var(--yh-shadow);
}

.yh-doc__img {
    height: 168px;
    background: #eef3fa;
    overflow: hidden;
}

.yh-doc__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.yh-doc__body {
    padding: 14px 15px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.yh-doc__name {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--yh-ink);
    margin: 0 0 3px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.3;
    min-height: 38px;   /* keeps two-line names from misaligning the row */
}

.yh-doc__name a {
    color: inherit;
    text-decoration: none;
}

.yh-doc__name .yh-verified {
    color: var(--yh-green);
    font-size: 12px;
    margin-top: 3px;
    flex: 0 0 auto;
}

.yh-doc__spec {
    font-size: 12.5px;
    color: var(--yh-muted);
    margin: 0 0 8px;
}

.yh-rate {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--yh-ink-soft);
    margin-bottom: 6px;
    min-height: 17px;
}

.yh-rate__stars {
    color: var(--yh-star);
    font-size: 11px;
    letter-spacing: .5px;
}

.yh-rate__stars .yh-off {
    color: #dbe3ee;
}

.yh-rate__count {
    color: var(--yh-muted);
}

.yh-doc__exp {
    font-size: 12px;
    font-weight: 600;
    color: var(--yh-ink-soft);
    margin: 0 0 12px;
}

.yh-doc .yh-btn {
    margin-top: auto;
    font-size: 13px;
    padding: 10px 14px;
}

/* ----------------------------------------------------- hospital cards -- */

.yh-hosp {
    width: 186px;
    text-decoration: none;
}

.yh-hosp:hover {
    text-decoration: none;
}

.yh-hosp__img {
    height: 128px;
    border-radius: 12px;
    overflow: hidden;
    background: #e7eefa;
    box-shadow: 0 12px 28px -24px rgba(15, 43, 82, .6);
}

.yh-hosp__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.yh-hosp:hover .yh-hosp__img img {
    transform: scale(1.06);
}

.yh-hosp__name {
    font-size: 13px;
    font-weight: 700;
    color: var(--yh-ink);
    margin: 12px 0 2px;
    line-height: 1.35;
    min-height: 35px;
}

.yh-hosp__city {
    font-size: 12px;
    color: var(--yh-muted);
}

/* ----------------------------------------------------------- why band -- */

.yh-why {
    background: linear-gradient(100deg, var(--yh-navy) 0%, #163f75 62%, #1b4d8c 100%);
    border-radius: 16px;
    padding: 34px 36px;
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 36px;
    align-items: center;
}

.yh-why .yh-label {
    color: #8fb6ec;
}

.yh-why h2 {
    font-size: 24px;
    line-height: 1.32;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.yh-why h2 em {
    font-style: normal;
    color: #4ade80;
}

.yh-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.yh-why__item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.yh-why__ico {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #9ec7f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.yh-why__t {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
}

.yh-why__s {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, .68);
    margin-top: 2px;
    line-height: 1.35;
}

/* ------------------------------------------------------- testimonials -- */

.yh-quotes-track > .yh-quote {
    width: calc((100% - 36px) / 3);
    min-width: 290px;
}

.yh-quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.yh-quote {
    background: #fff;
    border: 1px solid #e8eefa;
    border-radius: 12px;
    padding: 20px 20px 18px;
    box-shadow: 0 12px 30px -26px rgba(15, 43, 82, .55);
}

.yh-quote__stars {
    color: var(--yh-star);
    font-size: 12px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.yh-quote__stars .yh-off {
    color: #dbe3ee;
}

.yh-quote__text {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--yh-ink-soft);
    margin: 0 0 16px;
}

.yh-quote__who {
    display: flex;
    align-items: center;
    gap: 10px;
}

.yh-quote__av {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    background: var(--yh-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yh-quote__name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--yh-ink);
    line-height: 1.3;
}

.yh-quote__city {
    display: block;
    font-size: 11.5px;
    color: var(--yh-muted);
}

/* ------------------------------------------------------------ cta band -- */

.yh-cta {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(100deg, var(--yh-navy) 0%, #1c4f92 55%, #2f6fe0 100%);
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: center;
    min-height: 178px;
}

.yh-cta__copy {
    position: relative;
    z-index: 2;
    padding: 30px 34px;
}

.yh-cta h2 {
    font-size: 23px;
    line-height: 1.35;
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px;
}

.yh-cta__media {
    position: absolute;
    inset: 0 0 0 58%;
    z-index: 1;
}

.yh-cta__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% center;
    display: block;
}

.yh-cta__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, #1c4f92 0%, rgba(28, 79, 146, .45) 34%, rgba(28, 79, 146, 0) 72%);
}

.yh-cta__heart {
    position: absolute;
    right: 42%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 120px;
    color: rgba(255, 255, 255, .07);
    z-index: 2;
    pointer-events: none;
}

/* --------------------------------------------------------- responsive -- */

@media (max-width: 1199px) {
    .yh-hero h1 {
        font-size: 34px;
    }

    .yh-specs {
        grid-template-columns: repeat(5, 1fr);
        gap: 18px;
    }

    .yh-split {
        grid-template-columns: minmax(0, 1fr);
        gap: 26px;
    }

    .yh-steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .yh-why {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

@media (max-width: 991px) {
    .yh-sec {
        padding: 44px 0;
    }

    .yh-hero__inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .yh-hero__copy {
        padding: 30px 24px;
    }

    .yh-hero__media {
        position: relative;
        inset: auto;
        height: 240px;
    }

    .yh-hero__media::before {
        background: linear-gradient(180deg, #eaf2fe 0%, rgba(234, 242, 254, 0) 34%);
    }

    .yh-searchcard {
        margin-top: -34px;
    }

    .yh-stats__row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 0;
    }

    .yh-stat:nth-child(2) {
        border-right: 0;
    }

    .yh-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .yh-steps::before {
        display: none;
    }

    .yh-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .yh-quotes {
        grid-template-columns: 1fr;
    }

    .yh-cta {
        grid-template-columns: 1fr;
    }

    .yh-cta__media {
        display: none;
    }

    .yh-cta__heart {
        right: 6%;
    }

    .yh-h2 {
        font-size: 25px;
    }
}

@media (max-width: 767px) {
    .yh-hero h1 {
        font-size: 28px;
    }

    .yh-specs {
        grid-template-columns: repeat(3, 1fr);
    }

    .yh-searchform .yh-btn {
        width: 100%;
    }

    .yh-tabs {
        overflow-x: auto;
        justify-content: flex-start;
    }

    .yh-tab {
        white-space: nowrap;
        padding: 12px 12px;
    }

    .yh-arrow {
        display: none;
    }

    .yh-stat {
        justify-content: flex-start;
    }

    /* the sticky mobile action bar sits over the last strip */
    .yh-lastpad {
        padding-bottom: 74px;
    }
}

@media (max-width: 479px) {
    .yh-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .yh-steps,
    .yh-why__grid,
    .yh-stats__row {
        grid-template-columns: 1fr;
    }

    .yh-stat {
        border-right: 0;
    }
}

/* ==========================================================================
   RTL support — applied when <html dir="rtl"> (Arabic locale).
   We use logical properties where possible; these overrides fix the few
   places where physical left/right is still in use.
   ========================================================================== */
[dir="rtl"] body {
    text-align: right;
}

[dir="rtl"] .yh-stat {
    border-right: 0;
    border-left: 1px solid var(--yh-line);
}

[dir="rtl"] .yh-stat:last-child {
    border-left: 0;
}

[dir="rtl"] .yh-step__n {
    right: -8px;
    left: auto;
}

[dir="rtl"] .yh-arrow--prev {
    left: -6px;
    right: auto;
}

[dir="rtl"] .yh-arrow--next {
    right: -6px;
    left: auto;
}

[dir="rtl"] .yh-cta__heart {
    right: auto;
    left: 6%;
}

[dir="rtl"] .yh-trust__ico {
    margin-left: 0;
    margin-right: 12px;
}

[dir="rtl"] .yh-searchform .yh-field i {
    left: auto;
    right: 14px;
}

[dir="rtl"] .yh-searchform .yh-field select,
[dir="rtl"] .yh-searchform .yh-field input {
    padding: 11px 38px 11px 12px;
}

[dir="rtl"] .yh-hero__media {
    margin-left: 0;
    margin-right: 24px;
}

@media (max-width: 991px) {
    [dir="rtl"] .yh-hero__media {
        margin-right: 0;
    }
}

[dir="rtl"] .yh-footer__col ul li a {
    padding-left: 0;
    padding-right: 0;
}

[dir="rtl"] .yh-float {
    right: auto;
    left: 16px;
}

@media (min-width: 768px) {
    [dir="rtl"] .yh-float {
        left: 24px;
    }
}

/* When Arabic is active, the language selector itself should stay LTR so
   "EN" / "AR" labels read normally. The English content also stays LTR. */
[dir="rtl"] .yh-lang,
[dir="rtl"] .notranslate {
    direction: ltr;
    unicode-bidi: isolate;
}
