:root {
    --green: #34a853;
    --green-dark: #176b36;
    --ink: #142119;
    --muted: #657166;
    --line: #dfe9dc;
    --soft: #f5faf4;
    --white: #fff;
    --shadow: 0 20px 55px rgba(24, 45, 29, .12);
    --header-height: 82px;
    --hero-height: clamp(620px, calc(100vh - var(--header-height)), 780px);
}

.blog-post {
    background:
        linear-gradient(135deg, rgba(75,160,86,.08), transparent 32%),
        linear-gradient(180deg, #fff 0%, #f7fbf8 48%, #fff 100%);
}
.blog-post .blog-post-hero {
    min-height: 520px;
    padding: calc(var(--header-height) + 48px) 0 120px;
    background:
        linear-gradient(90deg, rgba(9,25,18,.82), rgba(9,25,18,.38) 52%, rgba(9,25,18,.14)),
        var(--blog-hero, url("../rehlty/media/hero-world.jpg")) center / cover;
}
.blog-hero-shell {
    display: grid;
    gap: 24px;
    align-content: end;
    min-height: 390px;
}
.blog-hero-panel {
    max-width: 820px;
}
.blog-post .blog-post-hero h1 {
    margin: 12px 0 14px;
    max-width: 860px;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1.16;
}
.blog-post .blog-post-hero p {
    max-width: 700px;
    font-size: 17px;
}
.blog-article-section {
    margin-top: -86px;
    padding-top: 0;
}
.blog-post .blog-post-layout {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 24px;
}
.blog-main-card {
    overflow: hidden;
    border: 1px solid rgba(33,74,47,.10);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(20,35,25,.12);
}
.blog-feature-image {
    position: relative;
    aspect-ratio: 16 / 7;
    min-height: 330px;
    margin: 0;
    overflow: hidden;
    background: #edf4ee;
}
.blog-feature-image::after {
    content: "";
    position: absolute;
    inset: auto 24px 0;
    height: 1px;
    background: rgba(255,255,255,.5);
}
.blog-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
}
.blog-article-body {
    display: grid;
    gap: 22px;
    padding: 30px;
}
.blog-post .blog-lead {
    position: relative;
    margin: 0;
    padding: 0 20px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--ink);
    font-size: 21px;
    font-weight: 900;
    line-height: 2;
}
.blog-post .blog-lead::before {
    content: "";
    position: absolute;
    top: 9px;
    right: 0;
    width: 5px;
    height: calc(100% - 18px);
    border-radius: 999px;
    background: var(--green);
}
.blog-section-list {
    display: grid;
    gap: 14px;
}
.blog-content-section {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 22px;
    border: 1px solid rgba(33,74,47,.10);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(75,160,86,.055), #fff 42%);
}
.blog-content-section > span {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #edf7ef;
    color: var(--green-dark);
    font-weight: 1000;
}
.blog-content-section h2 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 26px;
    line-height: 1.35;
}
.blog-content-section p {
    margin: 0;
    color: #5f6b63;
    line-height: 2;
}
.blog-post .blog-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(75,160,86,.20);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(75,160,86,.16), transparent 52%),
        #f8fcf9;
    box-shadow: none;
}
.blog-post .blog-cta strong {
    display: block;
    margin-bottom: 5px;
    color: var(--ink);
    font-size: 22px;
    font-weight: 1000;
}
.blog-post .blog-cta p {
    margin: 0;
    color: #5f6b63;
    line-height: 1.8;
}
.blog-post .blog-related {
    position: sticky;
    top: calc(var(--header-height) + 18px);
    padding: 16px;
    border: 1px solid rgba(33,74,47,.10);
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 45px rgba(20,35,25,.10);
    backdrop-filter: blur(14px);
}
.blog-related-head {
    display: grid;
    gap: 3px;
    margin-bottom: 4px;
}
.blog-related-head span {
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 1000;
}
.blog-related-head h3 {
    margin: 0;
    color: var(--ink);
    font-size: 21px;
}
.blog-post .blog-related a:not(.blog-side-cta) {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 18px;
    color: var(--ink);
    transition: background .2s ease, transform .2s ease;
}
.blog-post .blog-related a:not(.blog-side-cta):hover {
    background: #f3f8f4;
    transform: translateY(-2px);
}
.blog-post .blog-related img {
    width: 82px;
    height: 70px;
    border-radius: 14px;
    object-fit: cover;
}
.blog-post .blog-related span {
    color: var(--green);
    font-size: 12px;
    font-weight: 1000;
}
.blog-post .blog-related strong {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.55;
}
.blog-side-cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px !important;
    min-height: 42px;
    margin-top: 6px;
    padding: 10px 14px !important;
    border-radius: 999px !important;
    background: var(--green);
    color: #fff !important;
    font-weight: 1000;
}

@media (max-width: 991px) {
    .blog-post .blog-post-hero {
        min-height: 440px;
        padding: calc(var(--header-height) + 36px) 0 96px;
    }
    .blog-hero-shell {
        min-height: 320px;
    }
    .blog-post .blog-post-layout {
        grid-template-columns: 1fr;
    }
    .blog-post .blog-related {
        position: static;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .blog-related-head,
    .blog-side-cta {
        grid-column: 1 / -1;
    }
    .blog-post .blog-related a:not(.blog-side-cta) {
        grid-template-columns: 1fr;
    }
    .blog-post .blog-related img {
        width: 100%;
        height: 128px;
    }
}

@media (max-width: 560px) {
    .blog-post .blog-post-hero {
        min-height: 390px;
        padding: calc(var(--header-height) + 26px) 0 76px;
    }
    .blog-post .blog-post-hero h1 {
        font-size: 31px;
    }
    .blog-post .blog-post-hero p {
        font-size: 15px;
        line-height: 1.8;
    }
    .blog-article-section {
        margin-top: -52px;
    }
    .blog-main-card {
        border-radius: 20px;
    }
    .blog-feature-image {
        aspect-ratio: 4 / 3;
        min-height: 240px;
    }
    .blog-article-body {
        gap: 18px;
        padding: 18px;
    }
    .blog-post .blog-lead {
        padding-inline-start: 0;
        padding-inline-end: 16px;
        font-size: 17px;
        line-height: 1.9;
    }
    .blog-content-section {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
        border-radius: 18px;
    }
    .blog-content-section > span {
        width: 44px;
        height: 44px;
        border-radius: 13px;
    }
    .blog-content-section h2 {
        font-size: 22px;
    }
    .blog-content-section p {
        font-size: 14px;
        line-height: 1.9;
    }
    .blog-post .blog-cta {
        align-items: stretch;
        flex-direction: column;
        padding: 16px;
        border-radius: 18px;
    }
    .blog-post .blog-cta strong {
        font-size: 19px;
    }
    .blog-post .blog-related {
        grid-template-columns: 1fr;
        padding: 12px;
        border-radius: 18px;
    }
    .blog-post .blog-related a:not(.blog-side-cta) {
        grid-template-columns: 76px 1fr;
    }
    .blog-post .blog-related img {
        width: 76px;
        height: 64px;
    }
}

/* Home polish layer */
body:has(.home-slider) .section {
    padding-block: 58px;
}
body:has(.home-slider) .section-head {
    margin-bottom: 22px;
}
body:has(.home-slider) .section-head h2 {
    margin-bottom: 8px;
}
body:has(.home-slider) .section-head p {
    margin-bottom: 0;
    line-height: 1.75;
}
.home-services-section,
.tourism-offers-section,
.home-blog-section,
.google-reviews-section,
.travel-location-section,
.home-visas {
    isolation: isolate;
}
.home-services-section::after,
.tourism-offers-section::before,
.home-blog-section::before,
.google-reviews-section::before,
.travel-location-section::before,
.home-visas::after {
    content: "";
    position: absolute;
    inset: 28px 5vw auto;
    z-index: 0;
    height: 130px;
    pointer-events: none;
    opacity: .42;
    background:
        linear-gradient(115deg, transparent 0 16%, rgba(75,160,86,.22) 16.4% 16.8%, transparent 17.2% 100%),
        radial-gradient(circle at 22% 58%, rgba(75,160,86,.22) 0 3px, transparent 4px),
        radial-gradient(circle at 42% 46%, rgba(75,160,86,.18) 0 3px, transparent 4px),
        radial-gradient(circle at 66% 34%, rgba(75,160,86,.16) 0 3px, transparent 4px),
        radial-gradient(circle at 84% 26%, rgba(75,160,86,.13) 0 3px, transparent 4px);
    mask-image: linear-gradient(90deg, transparent, #000 16%, #000 82%, transparent);
    animation: homeRouteDrift 12s ease-in-out infinite alternate;
}
.tourism-offers-section::before,
.home-blog-section::before,
.google-reviews-section::before,
.travel-location-section::before {
    inset-block-start: 18px;
}
.home-services-section .shell,
.tourism-offers-section .shell,
.home-blog-section .shell,
.google-reviews-section .shell,
.travel-location-section .shell,
.home-visas .shell {
    position: relative;
    z-index: 1;
}
.home-services-section .section-head,
.tourism-offers-section .section-head,
.home-blog-section .section-head,
.home-visas .section-head {
    padding: 16px 18px;
    border: 1px solid rgba(33,74,47,.08);
    border-radius: 22px;
    background: rgba(255,255,255,.58);
    box-shadow: 0 18px 55px rgba(22,36,26,.05);
    backdrop-filter: blur(14px);
}
.showcase-grid,
.tourism-offers-grid,
.home-blog-grid {
    position: relative;
}
.showcase-grid::before,
.tourism-offers-grid::before,
.home-blog-grid::before {
    content: "";
    position: absolute;
    inset: -18px -22px;
    z-index: -1;
    border: 1px solid rgba(75,160,86,.08);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.78), rgba(245,250,246,.54)),
        repeating-linear-gradient(90deg, rgba(33,74,47,.045) 0 1px, transparent 1px 42px);
}
.showcase-card,
.tourism-offer-card,
.home-blog-card {
    animation: homeCardLift .7s ease both;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.showcase-card:nth-child(2),
.tourism-offer-card:nth-child(2),
.home-blog-card:nth-child(2) { animation-delay: .06s; }
.showcase-card:nth-child(3),
.tourism-offer-card:nth-child(3),
.home-blog-card:nth-child(3) { animation-delay: .12s; }
.showcase-card:nth-child(4),
.tourism-offer-card:nth-child(4),
.home-blog-card:nth-child(4) { animation-delay: .18s; }
.showcase-card:hover,
.tourism-offer-card:hover,
.home-blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 58px rgba(22,36,26,.14);
    border-color: rgba(75,160,86,.22);
}
.showcase-card figure,
.home-blog-card figure,
.tourism-offer-media {
    overflow: hidden;
}
.showcase-card img,
.home-blog-card img,
.tourism-offer-media img {
    transition: transform .55s ease, filter .55s ease;
}
.showcase-card:hover img,
.home-blog-card:hover img,
.tourism-offer-card:hover .tourism-offer-media img {
    transform: scale(1.065);
    filter: saturate(1.08) contrast(1.03);
}
.google-reviews-section,
.travel-location-section {
    padding-block: 46px;
}
.google-reviews-marquee {
    margin-top: 4px;
}
.travel-location-card {
    position: relative;
}
.travel-location-card::before {
    content: "";
    position: absolute;
    inset: -16px;
    z-index: -1;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(75,160,86,.12), transparent 44%),
        linear-gradient(315deg, rgba(13,51,35,.08), transparent 48%);
}
@keyframes homeRouteDrift {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-22px, 8px, 0); }
}
@keyframes homeCardLift {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    body:has(.home-slider) .section {
        padding-block: 44px;
    }
    .home-services-section .section-head,
    .tourism-offers-section .section-head,
    .home-blog-section .section-head,
    .home-visas .section-head {
        text-align: center;
    }
    .showcase-grid::before,
    .tourism-offers-grid::before,
    .home-blog-grid::before {
        inset: -12px;
        border-radius: 22px;
    }
}

@media (max-width: 560px) {
    body:has(.home-slider) .section {
        padding-block: 34px;
    }
    body:has(.home-slider) .section-head {
        margin-bottom: 16px;
    }
    .home-services-section::after,
    .tourism-offers-section::before,
    .home-blog-section::before,
    .google-reviews-section::before,
    .travel-location-section::before,
    .home-visas::after {
        height: 92px;
        opacity: .28;
    }
    .home-services-section .section-head,
    .tourism-offers-section .section-head,
    .home-blog-section .section-head,
    .home-visas .section-head {
        padding: 12px;
        border-radius: 18px;
        text-align: right;
    }
    html[dir="ltr"] .home-services-section .section-head,
    html[dir="ltr"] .tourism-offers-section .section-head,
    html[dir="ltr"] .home-blog-section .section-head,
    html[dir="ltr"] .home-visas .section-head {
        text-align: left;
    }
    .google-reviews-section,
    .travel-location-section {
        padding-block: 34px;
    }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    direction: rtl;
    font-family: "Cairo", "Tajawal", system-ui, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.7;
}
body.offer-modal-open {
    overflow: hidden;
}
html[dir="ltr"] body {
    direction: ltr;
    text-align: left;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.shell { width: min(1160px, calc(100% - 32px)); margin-inline: auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(223,233,220,.8);
}
.site-header::after {
    position: absolute;
    content: "";
    inset-inline: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52,168,83,.58), transparent);
}
.site-header.is-scrolled { box-shadow: 0 14px 40px rgba(22,36,26,.1); }
.header-shell {
    min-height: 78px;
    display: grid;
    grid-template-columns: minmax(200px, 250px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
}
.brand {
    min-width: 0;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
}
.brand img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    box-shadow: 0 10px 26px rgba(23,107,54,.14);
}
.brand strong { display: block; line-height: 1.25; }
.brand small { display: block; color: var(--muted); font-size: 12px; font-weight: 800; direction: ltr; text-align: right; }
html[dir="ltr"] .brand small { text-align: left; }
.desktop-nav {
    justify-self: center;
    width: max-content;
    max-width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px;
    border: 1px solid rgba(223,233,220,.9);
    border-radius: 999px;
    background: rgba(245,250,244,.72);
    overflow: visible;
}
.nav-link, .nav-toggle {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.nav-toggle i { font-size: 11px; transition: transform .2s ease; }
.nav-link:hover, .nav-toggle:hover {
    background: #fff;
    color: var(--green-dark);
    box-shadow: 0 8px 22px rgba(22,36,26,.07);
}
.nav-group:hover .nav-toggle i { transform: rotate(180deg); }
.nav-group { position: relative; }
.nav-dropdown {
    position: absolute; top: calc(100% + 14px); right: 0; width: 270px; padding: 10px;
    background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s ease;
}
html[dir="ltr"] .nav-dropdown {
    right: auto;
    left: 0;
}
.nav-dropdown::before {
    position: absolute;
    content: "";
    top: -7px;
    right: 26px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
    transform: rotate(-45deg);
}
html[dir="ltr"] .nav-dropdown::before {
    right: auto;
    left: 26px;
    transform: rotate(45deg);
}
.nav-group:hover .nav-dropdown { opacity: 1; visibility: visible; transform: none; }
.nav-dropdown a { position: relative; display: block; padding: 11px 13px; border-radius: 8px; color: var(--ink); font-weight: 800; }
.nav-dropdown a:hover { background: var(--soft); color: var(--green-dark); }
.header-actions {
    min-width: 0;
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
.header-contact-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid rgba(52,168,83,.24);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(22,36,26,.08);
}
.header-contact-item {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 13px;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}
.header-contact-item.whatsapp {
    background: linear-gradient(135deg, #25d366, var(--green));
    color: #fff;
}
.header-contact-item.call {
    color: var(--green-dark);
    border-inline-start: 1px solid rgba(52,168,83,.18);
}
.header-contact-item:hover { filter: brightness(.98); }
.language-switch {
    min-width: 58px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--soft);
    color: var(--ink);
    direction: ltr;
    font-weight: 900;
}
.language-switch:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}
.header-call { padding: 10px 14px; border-radius: 8px; background: var(--green); color: #fff; font-weight: 900; }
.mobile-open { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 10px; }
.mobile-open span { display: block; height: 2px; background: var(--ink); margin: 5px 0; }

.hero, .visa-hero-new {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(105deg, rgba(8,18,12,.93) 0%, rgba(15,55,30,.82) 46%, rgba(15,55,30,.36) 100%),
        url("../images/backgrounds/world.jpg") center/cover;
}
.hero-grid, .visa-grid { min-height: 650px; display: grid; grid-template-columns: minmax(0,1.05fr) minmax(340px,.95fr); gap: 34px; align-items: center; padding-block: 64px; }
.visa-grid-solo {
    grid-template-columns: minmax(0, 820px);
    justify-content: center;
    text-align: center;
}
.visa-grid-solo .page-hero-content {
    margin-inline: auto;
}
.visa-grid-solo .page-hero-meta,
.visa-grid-solo .hero-actions {
    justify-content: center;
}
.visa-hero-new { background-image: linear-gradient(105deg, rgba(8,18,12,.94) 0%, rgba(15,55,30,.82) 46%, rgba(15,55,30,.34) 100%), var(--hero-image); background-position: center; background-size: cover; }
.visa-hero-new::before,
.page-hero-premium::before {
    position: absolute;
    content: "";
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 78% 22%, rgba(185,238,188,.18), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0) 42%),
        linear-gradient(0deg, rgba(10,20,13,.86), rgba(10,20,13,0) 44%);
    pointer-events: none;
}
.visa-hero-new::after,
.page-hero-premium::after {
    position: absolute;
    content: "";
    inset-inline: 0;
    bottom: 0;
    z-index: -1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(186,240,191,.8), transparent);
}
.home-slider {
    position: relative;
    min-height: 680px;
    min-height: var(--hero-height);
    overflow: hidden;
    background: #102015;
    color: #fff;
}
@supports (height: 100svh) {
    :root { --hero-height: clamp(620px, calc(100svh - var(--header-height)), 780px); }
}
@supports (height: 100dvh) {
    :root { --hero-height: clamp(620px, calc(100dvh - var(--header-height)), 780px); }
}
.home-slider-track,
.rehlty-hero-swiper,
.rehlty-hero-swiper .swiper-wrapper {
    position: relative;
    width: 100%;
    min-height: inherit;
}
.rehlty-hero-swiper { overflow: hidden; }
.rehlty-hero-swiper .swiper-slide { height: auto; }
.home-slide {
    position: relative;
    min-height: inherit;
    display: flex;
    align-items: stretch;
    transform: scale(1.03);
    transition: opacity .65s ease, visibility .65s ease, transform 1.35s ease;
    background:
        linear-gradient(105deg, rgba(8,18,12,.94) 0%, rgba(14,55,30,.82) 43%, rgba(14,55,30,.22) 100%),
        var(--slide-image) center/cover no-repeat;
}
.home-slide::after {
    position: absolute;
    content: "";
    inset-inline: 0;
    bottom: 0;
    height: 34%;
    background: linear-gradient(0deg, rgba(16,32,21,.82), rgba(16,32,21,0));
    pointer-events: none;
}
.home-slide.is-active,
.home-slide.swiper-slide-active {
    transform: none;
}
.home-slide-inner {
    position: relative;
    z-index: 2;
    min-height: inherit;
    width: min(1160px, calc(100% - 32px));
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    padding: clamp(88px, 10vh, 118px) 0 clamp(104px, 12vh, 138px);
}
.home-slide-copy { max-width: 840px; }
.home-slide-copy > * {
    opacity: 0;
    transform: translateY(22px);
}
.home-slide.is-active .home-slide-copy > *,
.home-slide.swiper-slide-active .home-slide-copy > * {
    animation: slideFadeUp .72s cubic-bezier(.2,.8,.2,1) forwards;
}
.home-slide.is-active .home-slide-copy h1,
.home-slide.swiper-slide-active .home-slide-copy h1 { animation-delay: .12s; }
.home-slide.is-active .home-slide-copy p,
.home-slide.swiper-slide-active .home-slide-copy p { animation-delay: .24s; }
.home-slide.is-active .slide-benefits,
.home-slide.swiper-slide-active .slide-benefits { animation-delay: .34s; }
.home-slide.is-active .hero-actions,
.home-slide.swiper-slide-active .hero-actions { animation-delay: .44s; }
.home-slide.is-active .slide-ad-meta,
.home-slide.swiper-slide-active .slide-ad-meta { animation-delay: .56s; }
.home-slide-copy h1 {
    color: #fff;
    max-width: 900px;
    font-size: clamp(42px, 6vw, 88px);
    letter-spacing: 0;
    text-shadow: 0 14px 40px rgba(0,0,0,.22);
    overflow-wrap: anywhere;
}
.home-slide-copy p {
    max-width: 720px;
    color: rgba(255,255,255,.9);
    font-size: 21px;
}
.slide-kicker { align-items: center; gap: 8px; }
.slide-kicker i { font-size: 15px; }
.slide-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 24px;
}
.slide-benefits span {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: rgba(255,255,255,.11);
    color: #fff;
    font-weight: 900;
    backdrop-filter: blur(10px);
}
.slide-benefits i { color: #baf0bf; }
.slide-ad-meta {
    max-width: 820px;
    display: grid;
    grid-template-columns: repeat(3, minmax(180px,1fr));
    gap: 12px;
    margin-top: 34px;
}
.slide-ad-meta div {
    min-height: 118px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 48px rgba(0,0,0,.16);
}
.slide-ad-meta i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 8px;
    background: rgba(52,168,83,.9);
    color: #fff;
}
.slide-ad-meta strong,
.slide-ad-meta span { display: block; color: #fff; }
.slide-ad-meta strong { font-size: 17px; }
.slide-ad-meta span { opacity: .82; font-size: 14px; line-height: 1.7; }
.slide-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(4px);
}
.slide-shape.shape-1 {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    inset-inline-start: 8%;
    top: 18%;
    animation: floatShape 8s ease-in-out infinite;
}
.slide-shape.shape-2 {
    width: 96px;
    height: 96px;
    border-radius: 22px;
    inset-inline-end: 7%;
    bottom: 18%;
    transform: rotate(18deg);
    animation: floatShape 7s ease-in-out reverse infinite;
}
.home-quick-strip {
    position: relative;
    z-index: 3;
    margin-top: -42px;
}
.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(223,233,220,.85);
    border-radius: 8px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
}
.quick-stat,
.quick-contact {
    min-height: 86px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 8px;
    background: var(--soft);
}
.quick-stat i,
.quick-contact i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    border-radius: 50%;
    background: rgba(52,168,83,.12);
    color: var(--green-dark);
}
.quick-stat strong,
.quick-contact strong {
    font-size: 25px;
    color: var(--green-dark);
    line-height: 1.2;
}
.quick-stat span,
.quick-contact span { color: var(--muted); font-weight: 800; }
.quick-contact {
    background: var(--green);
    color: #fff;
}
.quick-contact strong,
.quick-contact span { color: #fff; }
.quick-contact i { background: rgba(255,255,255,.18); color: #fff; }
.home-slider-controls {
    position: absolute;
    inset: 0;
    width: auto;
    max-width: none;
    margin: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}
.slider-arrow,
.slider-dots button {
    pointer-events: auto;
    border: 1px solid rgba(255,255,255,.32);
    background: rgba(255,255,255,.13);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(10px);
}
.slider-arrow {
    position: absolute;
    top: 50%;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    box-shadow: 0 18px 42px rgba(0,0,0,.18);
    transform: translateY(-50%);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
[data-slider-prev] { right: max(22px, calc((100vw - 1160px) / 2 - 78px)); }
[data-slider-next] { left: max(22px, calc((100vw - 1160px) / 2 - 78px)); }
@media (max-width: 1299px) {
    [data-slider-prev] { right: clamp(18px, 3vw, 42px); }
    [data-slider-next] { left: clamp(18px, 3vw, 42px); }
}
.slider-arrow i { pointer-events: none; }
.slider-arrow:hover {
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-50%) scale(1.06);
}
.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(-50%);
    pointer-events: auto;
}
.slider-dots button,
.slider-dots .swiper-pagination-bullet {
    position: relative;
    width: 38px;
    height: 8px;
    padding: 0;
    border-radius: 999px;
    overflow: hidden;
    transition: width .2s ease, background .2s ease;
    opacity: 1;
    margin: 0 !important;
}
.slider-dots button span,
.slider-dots .swiper-pagination-bullet span {
    position: absolute;
    inset: 0;
    width: 0;
    border-radius: inherit;
    background: var(--green);
}
.slider-dots button.is-active,
.slider-dots .swiper-pagination-bullet-active {
    width: 56px;
    border-color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.22);
}
.slider-dots button.is-active span,
.slider-dots .swiper-pagination-bullet-active span {
    animation: sliderProgress 6.5s linear forwards;
}
@media (min-width: 992px) {
    .home-slider .slider-dots.rehlty-slider-pagination {
        top: auto;
        right: auto;
        bottom: 34px;
        left: 50%;
        width: auto;
        transform: translateX(-50%);
    }
}
.eyebrow { display: inline-flex; padding: 7px 12px; border-radius: 999px; background: rgba(52,168,83,.12); color: var(--green-dark); font-weight: 900; margin-bottom: 14px; }
.hero .eyebrow, .visa-hero-new .eyebrow, .home-slider .eyebrow, .page-hero-premium .eyebrow { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(10px); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(38px, 5vw, 72px); line-height: 1.14; margin-bottom: 18px; }
h2 { font-size: clamp(28px, 3vw, 44px); line-height: 1.25; margin-bottom: 12px; }
.hero p, .visa-hero-new p, .page-hero-premium p { max-width: 680px; color: rgba(255,255,255,.92); font-size: 19px; }
.hero-actions, .card-actions, .direct-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 11px 18px; border-radius: 8px; font-weight: 900; border: 1px solid transparent; cursor: pointer; }
.btn, .nav-link, .mobile-link, .showcase-card strong, .visa-feature-card strong { overflow-wrap: anywhere; }
.btn.primary { background: var(--green); color: #fff; }
.btn.primary:hover { background: var(--green-dark); }
.btn.ghost { background: rgba(255,255,255,.94); color: var(--ink); }
.btn.light { background: var(--soft); color: var(--green-dark); border-color: var(--line); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; max-width: 620px; }
.stats div { padding: 16px; border-radius: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.16); }
.stats strong, .stats span { display: block; color: #fff; }
.stats strong { font-size: 26px; }

.section { padding: 78px 0; }
.section.soft { background: var(--soft); }
.section-head { max-width: 760px; margin-bottom: 28px; }
.section-head span { color: var(--green-dark); font-weight: 900; }
.section-head p, .content-panel p, .service-card p, .info-panel p { color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.service-card, .content-panel, .info-panel, .lead-card {
    background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 24px; box-shadow: 0 8px 24px rgba(22,36,26,.05);
}
.service-card { min-height: 250px; display: flex; flex-direction: column; }
.service-card span { color: var(--green-dark); font-weight: 900; }
.service-card strong { margin-top: auto; color: var(--green-dark); }
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,420px); gap: 28px; align-items: start; }
.mini-list { display: flex; flex-wrap: wrap; gap: 10px; }
.mini-list a { padding: 12px 16px; background: #fff; border: 1px solid var(--line); border-radius: 8px; font-weight: 800; }
.mini-list a:hover { background: var(--green); color: #fff; border-color: var(--green); }
.wide-head { max-width: 860px; }
.home-services-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 8%, rgba(52,168,83,.1), transparent 32%),
        linear-gradient(180deg, #fff 0%, #fbfdfb 48%, #f4faf3 100%);
}
.home-services-section::before {
    position: absolute;
    content: "";
    inset-inline: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52,168,83,.35), transparent);
}
.home-services-section .shell {
    position: relative;
    z-index: 1;
}
.home-services-section .section-head {
    margin-inline: auto;
    text-align: center;
}
.home-services-section .section-head span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid rgba(52,168,83,.16);
    border-radius: 999px;
    background: rgba(52,168,83,.08);
}
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 20px;
}
.section-more-action {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}
.section-more-action .btn {
    min-width: 190px;
}
.blog-html-content {
    display: grid;
    gap: 18px;
}
.blog-html-content .article-panel,
.blog-html-content section {
    padding: 22px;
    border: 1px solid rgba(39,82,48,.10);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,251,246,.90));
    box-shadow: 0 18px 42px rgba(19,45,26,.07);
}
.blog-html-content h2,
.blog-html-content h3 {
    margin: 0 0 10px;
    color: var(--green-dark);
    line-height: 1.45;
}
.blog-html-content p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 2;
}
.blog-html-content p:last-child {
    margin-bottom: 0;
}
.blog-html-content img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(19,45,26,.12);
}
.blog-html-content figure {
    margin: 0;
}
.blog-html-content figcaption {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}
.blog-html-content ul,
.blog-html-content ol {
    margin: 0;
    padding-inline-start: 22px;
    color: var(--muted);
    line-height: 2;
}
.blog-html-content li + li {
    margin-top: 6px;
}
.blog-html-content blockquote {
    margin: 0;
    padding: 20px 22px;
    border-inline-start: 5px solid var(--green);
    border-radius: 20px;
    background: #eef7ee;
    color: var(--green-dark);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.9;
}
.blog-html-content a {
    color: var(--green-dark);
    font-weight: 1000;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}
.showcase-card {
    overflow: hidden;
    display: grid;
    grid-template-rows: 230px 1fr;
    border: 1px solid rgba(33,74,47,.11);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 48px rgba(22,36,26,.10);
    transform: translateY(0);
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}
.showcase-card figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 22px 22px 14px 14px;
    background: #eaf2ec;
}
.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.02);
    transition: transform .55s ease, filter .35s ease;
}
.showcase-card:hover {
    border-color: rgba(75,160,86,.26);
    transform: translateY(-7px);
    box-shadow: 0 30px 72px rgba(22,36,26,.16);
}
.showcase-card:hover img {
    filter: saturate(1.12) contrast(1.05);
    transform: scale(1.065);
}
.showcase-card div {
    display: grid;
    gap: 10px;
    padding: 18px;
}
.showcase-icon {
    position: absolute;
    inset-inline-end: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    color: var(--green-dark);
    box-shadow: 0 12px 26px rgba(0,0,0,.16);
    backdrop-filter: blur(10px);
    font-size: 18px;
}
.showcase-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 21px;
    line-height: 1.35;
}
.showcase-card p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 58px;
    margin: 0;
    color: #5f6b63;
    line-height: 1.75;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.showcase-card strong {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(75,160,86,.10);
    color: var(--green-dark);
    font-weight: 900;
    transition: background .2s ease, color .2s ease;
}
.showcase-card:hover strong {
    background: var(--green);
    color: #fff;
}
.all-services-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 48px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(11,31,18,.92), rgba(25,87,42,.68)),
        var(--all-services-hero-image, url("../rehlty/media/hero-world.jpg")) center / cover;
}
.all-services-hero::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 84px;
    background: linear-gradient(180deg, transparent, #f7fbf7);
}
.all-services-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: 32px;
    align-items: end;
}
.all-services-copy {
    max-width: 760px;
}
.all-services-copy > span,
.all-services-head span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    font-weight: 900;
}
.all-services-copy h1 {
    margin: 18px 0 12px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.15;
}
.all-services-copy p {
    margin: 0;
    max-width: 680px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.9;
}
.all-services-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.all-services-feature {
    display: grid;
    gap: 12px;
}
.all-services-feature article {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
}
.all-services-feature span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    border-radius: 50%;
    color: var(--green-dark);
    background: rgba(255,255,255,.92);
}
.all-services-feature strong {
    line-height: 1.5;
}
.all-services-section {
    background:
        linear-gradient(180deg, #f7fbf7 0%, #fff 54%, #f4faf3 100%);
}
.all-services-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    gap: 22px;
    align-items: end;
    margin-bottom: 24px;
}
.all-services-head span {
    border-color: rgba(52,168,83,.16);
    color: var(--green-dark);
    background: rgba(52,168,83,.08);
}
.all-services-head h2 {
    margin: 12px 0 0;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.2;
}
.all-services-head p {
    margin: 0;
    color: #627067;
    line-height: 1.9;
}
.all-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.all-service-card {
    overflow: hidden;
    display: grid;
    grid-template-rows: 260px 1fr;
    border: 1px solid rgba(33,74,47,.11);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 22px 54px rgba(22,36,26,.10);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.all-service-card:hover {
    border-color: rgba(75,160,86,.28);
    transform: translateY(-7px);
    box-shadow: 0 30px 74px rgba(22,36,26,.16);
}
.all-service-card figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    background: #eaf2ec;
}
.all-service-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .55s ease;
}
.all-service-card:hover img {
    transform: scale(1.06);
}
.all-service-card figure span {
    position: absolute;
    inset-inline-start: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--green-dark);
    background: rgba(255,255,255,.92);
    box-shadow: 0 14px 30px rgba(0,0,0,.16);
}
.all-service-card div {
    display: grid;
    gap: 11px;
    padding: 20px;
}
.all-service-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.35;
}
.all-service-card p {
    margin: 0;
    color: #5f6b63;
    line-height: 1.85;
}
.all-service-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 48px;
    margin-top: auto;
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--green-dark);
    background: #eef6ef;
    font-weight: 900;
}
.all-service-card:hover strong {
    color: #fff;
    background: var(--green);
}
.all-services-empty {
    grid-column: 1 / -1;
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 44px 18px;
    border: 1px solid rgba(33,74,47,.11);
    border-radius: 24px;
    background: #fff;
    text-align: center;
}
.all-services-empty i {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: var(--green-dark);
    background: #eef6ef;
    font-size: 24px;
}
.all-services-empty h2,
.all-services-empty p {
    margin: 0;
}
.all-services-empty p {
    color: #627067;
}
.all-offers-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 54px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(12,28,16,.94), rgba(23,87,44,.68)),
        var(--all-offers-hero-image, url("../rehlty/media/hero-visas.jpg")) center / cover;
}
.all-offers-hero::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 86px;
    background: linear-gradient(180deg, transparent, #f7fbf7);
}
.all-offers-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 34px;
    align-items: end;
}
.all-offers-copy {
    max-width: 760px;
}
.all-offers-copy > span {
    display: inline-flex;
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    font-weight: 900;
}
.all-offers-copy h1 {
    margin: 18px 0 12px;
    font-size: clamp(40px, 6vw, 74px);
    line-height: 1.12;
}
.all-offers-copy p {
    margin: 0;
    max-width: 680px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.9;
}
.featured-offer-panel {
    overflow: hidden;
    display: grid;
    grid-template-rows: 250px 1fr;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 24px;
    background: rgba(255,255,255,.14);
    box-shadow: 0 28px 70px rgba(0,0,0,.22);
    backdrop-filter: blur(12px);
}
.featured-offer-panel img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.featured-offer-panel div {
    display: grid;
    gap: 6px;
    padding: 18px;
}
.featured-offer-panel span {
    color: rgba(255,255,255,.76);
    font-weight: 900;
}
.featured-offer-panel strong {
    font-size: 22px;
    line-height: 1.35;
}
.featured-offer-panel small {
    color: rgba(255,255,255,.78);
    line-height: 1.6;
}
.all-offers-section {
    background:
        radial-gradient(circle at 88% 6%, rgba(52,168,83,.10), transparent 28%),
        linear-gradient(180deg, #f7fbf7 0%, #fff 52%, #f4faf3 100%);
}
.all-offers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.all-offer-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(260px, 46%) minmax(0, 1fr);
    min-height: 320px;
    border: 1px solid rgba(33,74,47,.11);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(22,36,26,.10);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.all-offer-card:hover {
    border-color: rgba(75,160,86,.30);
    transform: translateY(-6px);
    box-shadow: 0 34px 80px rgba(22,36,26,.16);
}
.all-offer-card figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    background: #eaf2ec;
}
.all-offer-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .55s ease;
}
.all-offer-card:hover img {
    transform: scale(1.055);
}
.all-offer-card figure em {
    position: absolute;
    inset-inline-end: 16px;
    bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--green-dark);
    background: rgba(255,255,255,.94);
    font-style: normal;
    font-weight: 900;
}
.all-offer-card > div {
    display: grid;
    gap: 12px;
    padding: 22px;
}
.all-offer-card > div > span {
    color: var(--green);
    font-weight: 900;
}
.all-offer-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 26px;
    line-height: 1.35;
}
.all-offer-card p {
    margin: 0;
    color: #5f6b63;
    line-height: 1.85;
}
.all-offer-card strong {
    display: grid;
    gap: 8px;
    margin-top: auto;
}
.all-offer-card b {
    color: #3d4a40;
    line-height: 1.55;
}
.all-offer-card small {
    width: max-content;
    max-width: 100%;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    color: #fff;
    background: var(--green);
    font-size: 14px;
}
.tourism-offers-section {
    position: relative;
    overflow: hidden;
    order: 4;
    background:
        linear-gradient(135deg, rgba(72,154,93,.08), transparent 34%),
        linear-gradient(180deg, #fff 0%, #f7fbf8 100%);
}
main {
    display: flex;
    flex-direction: column;
}
.home-slider { order: 1; }
.home-quick-strip { order: 2; }
.google-reviews-section { order: 6; }
.home-services-section { order: 3; }
.home-blog-section { order: 5; }
.travel-location-section { order: 7; }
main > .home-cta { order: 8; }
.google-reviews-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(66,133,244,.08), transparent 28%),
        linear-gradient(315deg, rgba(251,188,5,.10), transparent 30%),
        #fff;
}
.google-reviews-layout {
    display: grid;
    grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}
.google-reviews-summary,
.google-review-card,
.google-review-placeholder {
    border: 1px solid rgba(33,74,47,.12);
    background: rgba(255,255,255,.88);
    box-shadow: 0 22px 58px rgba(18,35,27,.10);
    backdrop-filter: blur(12px);
}
.google-reviews-summary {
    display: flex;
    min-height: 420px;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 34px;
    border-radius: 34px;
}
.google-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(66,133,244,.10);
    color: #2468d8;
    font-weight: 900;
}
.google-reviews-summary h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.25;
}
.google-reviews-summary p {
    margin: 0;
    color: #5f6b63;
    font-size: 17px;
    line-height: 1.9;
}
.google-rating-panel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid rgba(33,74,47,.10);
    border-radius: 24px;
    background: linear-gradient(135deg, #fff, #f6fbf8);
}
.google-rating-panel strong {
    display: grid;
    min-width: 86px;
    min-height: 74px;
    place-items: center;
    border-radius: 20px;
    background: var(--ink);
    color: #fff;
    font-size: 28px;
    font-weight: 900;
}
.review-stars {
    display: inline-flex;
    gap: 3px;
    color: #fbbc05;
}
.google-rating-panel small,
.review-card-top small {
    display: block;
    margin-top: 6px;
    color: #6b756e;
    font-weight: 800;
}
.google-review-link {
    width: fit-content;
}
.google-reviews-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.google-review-card {
    display: flex;
    min-height: 220px;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
    border-radius: 28px;
    animation: reviewCardIn .55s ease both;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.google-review-card:nth-child(2) { animation-delay: .08s; }
.google-review-card:nth-child(3) { animation-delay: .16s; }
.google-review-card:nth-child(4) { animation-delay: .24s; }
.google-review-card:hover {
    border-color: rgba(75,160,86,.26);
    transform: translateY(-6px);
    box-shadow: 0 30px 76px rgba(18,35,27,.15);
}
.review-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-card-top img,
.review-card-top > span {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 18px;
}
.review-card-top img {
    object-fit: cover;
}
.review-card-top > span {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--green), #256e53);
    color: #fff;
    font-size: 24px;
    font-weight: 900;
}
.review-card-top h3 {
    margin: 0;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.35;
}
.google-review-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #526058;
    line-height: 1.9;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}
.google-review-placeholder {
    grid-column: 1 / -1;
    display: grid;
    min-height: 300px;
    place-items: center;
    align-content: center;
    gap: 12px;
    padding: 34px;
    border-radius: 32px;
    text-align: center;
}
.google-review-placeholder i {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border-radius: 22px;
    background: rgba(66,133,244,.10);
    color: #2468d8;
    font-size: 28px;
}
.google-review-placeholder h3 {
    margin: 0;
    color: var(--ink);
    font-size: 26px;
}
.google-review-placeholder p {
    max-width: 560px;
    margin: 0;
    color: #66736b;
    line-height: 1.9;
}
@keyframes reviewCardIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.google-reviews-section {
    padding-block: 46px;
    background:
        linear-gradient(135deg, rgba(66,133,244,.07), transparent 30%),
        linear-gradient(315deg, rgba(52,168,83,.08), transparent 32%),
        #fbfdfb;
}
.google-reviews-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}
.google-reviews-head > div {
    max-width: 620px;
}
.google-reviews-head h2 {
    margin: 9px 0 6px;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.18;
}
.google-reviews-head p {
    margin: 0;
    color: #627068;
    font-size: 15px;
    line-height: 1.75;
}
.google-rating-pill {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 10px;
    min-width: 360px;
    padding: 10px 12px;
    border: 1px solid rgba(33,74,47,.12);
    border-radius: 24px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 18px 46px rgba(18,35,27,.10);
    transition: transform .25s ease, box-shadow .25s ease;
}
.google-rating-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 64px rgba(18,35,27,.14);
}
.google-rating-pill > strong {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 20px;
    background: #19231b;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
}
.google-rating-pill small {
    display: block;
    margin-top: 3px;
    color: #66736b;
    font-size: 12px;
    font-weight: 900;
}
.google-rating-pill em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    white-space: nowrap;
}
.google-rating-pill > i {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 14px;
    background: rgba(66,133,244,.10);
    color: #2468d8;
}
.google-reviews-marquee {
    position: relative;
    display: grid;
    gap: 0;
    overflow: hidden;
    padding-block: 6px;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.review-marquee-track {
    display: flex;
    width: max-content;
    gap: 14px;
    animation: reviewsMarquee 125s linear infinite;
}
.google-reviews-marquee:hover .review-marquee-track {
    animation-play-state: paused;
}
.google-reviews-section .google-review-card {
    flex: 0 0 292px;
    min-height: 174px;
    gap: 9px;
    padding: 16px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.90)),
        #fff;
    color: var(--ink);
    box-shadow: 0 18px 46px rgba(18,35,27,.10);
}
.google-reviews-section .google-review-card p {
    font-size: 13px;
    line-height: 1.75;
    -webkit-line-clamp: 3;
}
.google-reviews-section .review-card-top {
    gap: 9px;
}
.google-reviews-section .review-card-top img,
.google-reviews-section .review-card-top > span {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 15px;
    font-size: 20px;
}
.google-reviews-section .review-card-top h3 {
    font-size: 15px;
}
.google-reviews-section .review-card-top small {
    margin-top: 3px;
    font-size: 12px;
}
@keyframes reviewsMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
}
@keyframes reviewsMarqueeReverse {
    from { transform: translateX(50%); }
    to { transform: translateX(0); }
}
.travel-location-section {
    padding-block: 56px;
    background:
        linear-gradient(135deg, rgba(75,160,86,.10), transparent 34%),
        linear-gradient(315deg, rgba(13,51,35,.06), transparent 36%),
        #fff;
}
.travel-location-card {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(420px, 1.1fr);
    gap: 26px;
    align-items: stretch;
}
.travel-location-copy,
.travel-map-card {
    border: 1px solid rgba(33,74,47,.12);
    border-radius: 30px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 24px 64px rgba(18,35,27,.10);
}
.travel-location-copy {
    display: flex;
    min-height: 360px;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 34px;
}
.location-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(75,160,86,.12);
    color: var(--green-dark);
    font-weight: 900;
}
.travel-location-copy h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.2;
}
.travel-location-copy p {
    margin: 0;
    color: #5f6b63;
    font-size: 16px;
    line-height: 1.9;
}
.location-meta {
    display: grid;
    gap: 9px;
}
.location-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3d4a42;
    font-weight: 900;
    line-height: 1.6;
}
.location-meta i {
    color: var(--green);
}
.location-main-link {
    width: fit-content;
    margin-top: 4px;
}
.travel-map-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    color: var(--ink);
    background: #eef2f5;
    isolation: isolate;
}
.travel-map-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.20)),
        radial-gradient(circle at 50% 46%, transparent 0 10%, rgba(255,255,255,.34) 48%, rgba(255,255,255,.52) 100%);
    pointer-events: none;
}
.real-map-frame {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(.9) contrast(1.02) brightness(1.02);
    pointer-events: none;
}
.map-plane-overlay {
    position: absolute;
    z-index: 3;
    top: 49%;
    left: 50%;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 24%, rgba(255,255,255,.88), rgba(255,255,255,.18) 34%, transparent 36%),
        linear-gradient(135deg, rgba(75,160,86,.96), #1f654b);
    color: #fff;
    font-size: 17px;
    box-shadow:
        0 14px 28px rgba(22,36,26,.24),
        inset 0 1px 0 rgba(255,255,255,.50);
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(-18deg);
}
.map-plane-overlay::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 54px;
    height: 7px;
    right: 31px;
    top: 50%;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), rgba(75,160,86,.36));
    filter: blur(.2px);
    transform: translateY(-50%) rotate(2deg);
    opacity: .55;
    animation: mapPlaneTrail 4.8s ease-in-out infinite;
}
.map-plane-overlay::after {
    content: "";
    position: absolute;
    z-index: -2;
    width: 36px;
    height: 11px;
    left: 50%;
    bottom: -12px;
    border-radius: 50%;
    background: rgba(22,36,26,.18);
    filter: blur(6px);
    transform: translateX(-50%);
    animation: mapPlaneShadow 4.8s ease-in-out infinite;
}
.map-plane-overlay i {
    filter: drop-shadow(0 2px 3px rgba(0,0,0,.16));
    transform: rotate(12deg);
}
.map-location-label {
    position: absolute;
    z-index: 4;
    right: 26px;
    bottom: 24px;
    display: grid;
    gap: 2px;
    padding: 13px 15px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 18px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 18px 44px rgba(18,35,27,.12);
    backdrop-filter: blur(12px);
    pointer-events: none;
}
.travel-map-card:hover .map-plane-overlay {
    box-shadow: 0 20px 44px rgba(22,36,26,.32);
    transform: translate(-50%, -50%) rotate(-18deg) scale(1.04);
}
.map-location-label strong {
    color: var(--ink);
    font-size: 17px;
}
.map-location-label small {
    color: var(--green-dark);
    font-weight: 900;
}
@keyframes mapPlaneTrail {
    0%, 100% {
        opacity: .34;
        width: 42px;
    }
    42% {
        opacity: .56;
        width: 62px;
    }
    68% {
        opacity: .44;
        width: 50px;
    }
}
@keyframes mapPlaneShadow {
    0%, 100% {
        opacity: .16;
        transform: translateX(-50%) scale(.88);
    }
    42% {
        opacity: .28;
        transform: translateX(-50%) scale(1.08);
    }
}
.tourism-offers-section .section-head {
    margin-inline: auto;
    text-align: center;
}
.tourism-offers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}
.tourism-offer-card {
    overflow: hidden;
    display: grid;
    grid-template-rows: 320px auto;
    padding: 0;
    border: 1px solid rgba(33,74,47,.12);
    border-radius: 28px;
    background: #fff;
    color: var(--ink);
    text-align: right;
    box-shadow: 0 24px 60px rgba(20,55,33,.12);
    cursor: pointer;
    animation: offerCardIn .65s ease both;
    animation-delay: calc(var(--offer-index, 0) * 80ms);
    transition: transform .34s ease, box-shadow .34s ease, border-color .34s ease;
}
html[dir="ltr"] .tourism-offer-card {
    text-align: left;
}
.tourism-offer-card figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 26px 26px 16px 16px;
    background: #dfe9e2;
}
.tourism-offer-card figure::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(5,20,13,.42));
    pointer-events: none;
}
.offer-live-mini {
    position: absolute;
    z-index: 2;
    top: 14px;
    inset-inline: 14px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    pointer-events: none;
}
.offer-live-mini span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 999px;
    background: rgba(8,25,17,.46);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
    backdrop-filter: blur(12px);
}
.offer-live-mini i {
    color: #d7f5cf;
}
.tourism-offer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.02);
    transition: transform .55s ease, filter .55s ease;
}
.tourism-offer-card:hover {
    border-color: rgba(75,160,86,.28);
    box-shadow: 0 34px 84px rgba(20,55,33,.18);
    transform: translateY(-7px);
}
.tourism-offer-card:hover img {
    filter: saturate(1.13) contrast(1.06);
    transform: scale(1.065);
}
.offer-destination {
    position: absolute;
    z-index: 1;
    inset-inline-start: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: var(--green-dark);
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(0,0,0,.14);
    backdrop-filter: blur(10px);
}
.offer-card-copy {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 22px;
}
.offer-card-copy span {
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
}
.offer-card-copy h3 {
    min-height: 0;
    margin: 0;
    color: var(--ink);
    font-size: 25px;
    line-height: 1.36;
}
.offer-card-copy p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 50px;
    margin: 0;
    color: #5f6b63;
    line-height: 1.75;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.offer-card-copy div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 8px;
}
.offer-card-copy strong {
    display: inline-flex;
    max-width: 58%;
    color: #3e4a42;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.5;
}
.offer-card-copy em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-style: normal;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 12px 26px rgba(75,160,86,.24);
}
.tourism-offer-card:hover .offer-card-copy em {
    background: var(--green-dark);
}
@keyframes offerCardIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.home-blog-section,
.blog-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(30,111,82,.07), transparent 32%),
        linear-gradient(180deg, #fff 0%, #f6fbf8 100%);
}
.home-blog-section .section-head,
.blog-section .section-head {
    margin-inline: auto;
    text-align: center;
}
.home-blog-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.home-blog-card,
.blog-card {
    overflow: hidden;
    display: grid;
    grid-template-rows: 220px 1fr;
    border: 1px solid rgba(33,74,47,.12);
    border-radius: 24px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 20px 48px rgba(22,36,26,.10);
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}
.home-blog-card:hover,
.blog-card:hover {
    border-color: rgba(75,160,86,.26);
    transform: translateY(-7px);
    box-shadow: 0 30px 72px rgba(22,36,26,.16);
}
.home-blog-card figure,
.blog-card figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 22px 22px 14px 14px;
    background: #eaf2ec;
}
.home-blog-card img,
.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.02);
    transition: transform .55s ease, filter .35s ease;
}
.home-blog-card:hover img,
.blog-card:hover img {
    filter: saturate(1.12) contrast(1.05);
    transform: scale(1.065);
}
.home-blog-card figure span,
.blog-card figure span {
    position: absolute;
    inset-inline-start: 14px;
    bottom: 14px;
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(0,0,0,.14);
    backdrop-filter: blur(10px);
}
.home-blog-card > div,
.blog-card > div {
    display: grid;
    gap: 10px;
    padding: 18px;
}
.home-blog-card small,
.blog-card small {
    color: var(--green);
    font-weight: 900;
}
.home-blog-card h3,
.blog-card h2 {
    margin: 0;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.4;
}
.home-blog-card p,
.blog-card p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 58px;
    margin: 0;
    color: #5f6b63;
    line-height: 1.75;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.home-blog-card strong,
.blog-card strong {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(75,160,86,.10);
    color: var(--green-dark);
    font-weight: 900;
    transition: background .2s ease, color .2s ease;
}
.home-blog-card:hover strong,
.blog-card:hover strong {
    background: var(--green);
    color: #fff;
}
.blog-index-hero,
.blog-post-hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-height) + 86px) 0 88px;
    background:
        linear-gradient(90deg, rgba(9,25,18,.84), rgba(9,25,18,.42)),
        var(--blog-hero, url("../rehlty/media/hero-world.jpg")) center / cover;
    color: #fff;
}
.blog-index-hero h1,
.blog-post-hero h1 {
    max-width: 820px;
    margin: 12px 0;
    color: #fff;
    font-size: clamp(38px, 6vw, 70px);
    line-height: 1.16;
}
.blog-index-hero p,
.blog-post-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255,255,255,.84);
    font-size: 18px;
    line-height: 1.9;
}
.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.blog-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #fff;
    backdrop-filter: blur(10px);
    font-weight: 900;
}
.blog-post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    align-items: start;
}
.blog-post-content {
    display: grid;
    gap: 24px;
}
.blog-lead,
.blog-post-content section,
.blog-cta,
.blog-related {
    border: 1px solid rgba(33,74,47,.10);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(22,36,26,.08);
}
.blog-lead {
    margin: 0;
    padding: 24px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.9;
}
.blog-post-content section {
    padding: 26px;
}
.blog-post-content h2 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 28px;
}
.blog-post-content p {
    margin: 0;
    color: #5f6b63;
    line-height: 2;
}
.legal-page-section {
    background: linear-gradient(180deg, #fff, #f7fbf8);
}
.legal-page-shell {
    max-width: 920px;
}
.legal-content-panel {
    display: grid;
    gap: 16px;
}
.legal-lead,
.legal-content-panel section,
.legal-contact-box {
    border: 1px solid rgba(33,74,47,.10);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(22,36,26,.07);
}
.legal-lead {
    margin: 0;
    padding: 22px;
    color: #48564d;
    font-size: 18px;
    line-height: 1.9;
}
.legal-content-panel section {
    padding: 22px;
}
.legal-content-panel h2 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 24px;
}
.legal-content-panel p {
    margin: 0;
    color: #5f6b63;
    line-height: 1.9;
}
.legal-contact-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 18px;
}
.legal-contact-box strong {
    color: var(--ink);
    margin-inline-end: auto;
}
.legal-contact-box a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(75,160,86,.10);
    color: var(--green-dark);
    font-weight: 900;
    direction: ltr;
}
.faq-page-section {
    background:
        linear-gradient(135deg, rgba(75,160,86,.08), transparent 34%),
        linear-gradient(180deg, #fff, #f5faf7);
}
.faq-page-shell {
    display: grid;
    gap: 22px;
}
.faq-intro-card {
    display: grid;
    gap: 10px;
    padding: 26px;
    border: 1px solid rgba(33,74,47,.10);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(22,36,26,.08);
    text-align: center;
}
.faq-intro-card span {
    color: var(--green-dark);
    font-weight: 900;
}
.faq-intro-card h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.25;
}
.faq-intro-card p {
    max-width: 760px;
    margin: 0 auto;
    color: #5f6b63;
    line-height: 1.9;
}
.faq-mini-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}
.faq-mini-stats strong {
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(75,160,86,.10);
    color: var(--green-dark);
    font-size: 13px;
}
.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 22px;
    align-items: start;
}
.faq-accordion {
    display: grid;
    gap: 12px;
}
.faq-item {
    overflow: hidden;
    border: 1px solid rgba(33,74,47,.10);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(22,36,26,.07);
}
.faq-item summary {
    display: grid;
    grid-template-columns: 44px 1fr 34px;
    align-items: center;
    gap: 12px;
    padding: 17px 18px;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary span,
.faq-item summary i {
    display: grid;
    place-items: center;
    border-radius: 12px;
}
.faq-item summary span {
    width: 44px;
    height: 44px;
    background: rgba(75,160,86,.10);
    color: var(--green-dark);
    font-weight: 900;
}
.faq-item summary strong {
    font-size: 18px;
    line-height: 1.55;
}
.faq-item summary i {
    width: 34px;
    height: 34px;
    background: #f3f7f4;
    color: var(--green-dark);
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.faq-item[open] summary i {
    background: var(--green);
    color: #fff;
    transform: rotate(45deg);
}
.faq-item p {
    margin: 0;
    padding: 0 74px 20px 18px;
    color: #5f6b63;
    line-height: 1.9;
}
.faq-help-card {
    position: sticky;
    top: calc(var(--header-height) + 18px);
    display: grid;
    gap: 12px;
    padding: 22px;
    border: 1px solid rgba(33,74,47,.10);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(75,160,86,.12), transparent),
        #fff;
    box-shadow: 0 18px 48px rgba(22,36,26,.09);
}
.faq-help-card > i {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 18px;
    background: var(--green);
    color: #fff;
    font-size: 22px;
}
.faq-help-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 24px;
}
.faq-help-card p {
    margin: 0;
    color: #5f6b63;
    line-height: 1.8;
}
.faq-help-card > a:not(.btn) {
    color: var(--green-dark);
    font-weight: 900;
    direction: ltr;
}
.docs-page-section {
    background:
        linear-gradient(135deg, rgba(75,160,86,.08), transparent 32%),
        linear-gradient(180deg, #fff, #f6fbf8);
}
.docs-page-shell {
    display: grid;
    gap: 22px;
}
.docs-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 18px;
    align-items: stretch;
    padding: 26px;
    border: 1px solid rgba(33,74,47,.10);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(22,36,26,.08);
}
.docs-hero-card span {
    color: var(--green-dark);
    font-weight: 900;
}
.docs-hero-card h2 {
    max-width: 760px;
    margin: 8px 0;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.25;
}
.docs-hero-card p {
    margin: 0;
    color: #5f6b63;
    line-height: 1.9;
}
.docs-quality-card {
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--green), #246b50);
    color: #fff;
}
.docs-quality-card i {
    font-size: 28px;
}
.docs-quality-card strong {
    font-size: 20px;
    line-height: 1.45;
}
.docs-quality-card small {
    color: rgba(255,255,255,.80);
    font-weight: 800;
    line-height: 1.7;
}
.docs-checklist-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.docs-check-card {
    padding: 20px;
    border: 1px solid rgba(33,74,47,.10);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(22,36,26,.07);
    transition: transform .25s ease, box-shadow .25s ease;
}
.docs-check-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(22,36,26,.12);
}
.docs-check-card i {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 16px;
    background: rgba(75,160,86,.10);
    color: var(--green-dark);
    font-size: 20px;
}
.docs-check-card h3 {
    margin: 0 0 7px;
    color: var(--ink);
    font-size: 20px;
}
.docs-check-card p {
    margin: 0;
    color: #5f6b63;
    line-height: 1.8;
}
.docs-info-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 20px;
    align-items: start;
}
.docs-info-list {
    display: grid;
    gap: 12px;
}
.docs-info-list section {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(33,74,47,.10);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(22,36,26,.07);
}
.docs-info-list span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 16px;
    background: var(--ink);
    color: #fff;
    font-weight: 900;
}
.docs-info-list h2 {
    margin: 0 0 7px;
    color: var(--ink);
    font-size: 22px;
}
.docs-info-list p {
    margin: 0;
    color: #5f6b63;
    line-height: 1.9;
}
.docs-send-card {
    position: sticky;
    top: calc(var(--header-height) + 18px);
    display: grid;
    gap: 12px;
    padding: 22px;
    border: 1px solid rgba(33,74,47,.10);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(22,36,26,.09);
}
.docs-send-card > i {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 18px;
    background: var(--green);
    color: #fff;
    font-size: 22px;
}
.docs-send-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 24px;
}
.docs-send-card p {
    margin: 0;
    color: #5f6b63;
    line-height: 1.8;
}
.docs-send-card > a:not(.btn) {
    color: var(--green-dark);
    font-weight: 900;
    direction: ltr;
}
.blog-cta {
    display: grid;
    gap: 12px;
    padding: 26px;
    background:
        linear-gradient(135deg, rgba(75,160,86,.12), transparent),
        #fff;
}
.blog-related {
    position: sticky;
    top: calc(var(--header-height) + 18px);
    display: grid;
    gap: 12px;
    padding: 16px;
}
.blog-related h3 {
    margin: 0 0 4px;
}
.blog-related a {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 12px;
    align-items: center;
    color: var(--ink);
}
.blog-related img {
    width: 88px;
    height: 72px;
    object-fit: cover;
    border-radius: 14px;
}
.blog-related span {
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
}
.blog-related strong {
    display: block;
    margin-top: 3px;
    line-height: 1.5;
}
.offer-modal {
    position: fixed;
    inset: 0;
    z-index: 180;
    display: grid;
    place-items: center;
    padding: 20px;
}
.offer-modal[hidden] {
    display: none;
}
.offer-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6,14,9,.68);
    backdrop-filter: blur(7px);
}
.offer-modal-panel {
    position: relative;
    overflow: auto;
    width: min(1040px, 100%);
    max-height: min(86vh, 920px);
    padding: 18px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0,0,0,.32);
}
.offer-modal-close {
    position: sticky;
    top: 0;
    z-index: 5;
    width: 42px;
    height: 42px;
    float: left;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -42px;
    border: 0;
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
    cursor: pointer;
}
html[dir="ltr"] .offer-modal-close {
    float: right;
}
.offer-modal-hero {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
    gap: 20px;
    align-items: stretch;
    border-radius: 8px;
    background: var(--soft);
}
.offer-modal-hero img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}
.offer-modal-hero > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 28px 28px 18px;
}
html[dir="ltr"] .offer-modal-hero > div {
    padding: 28px 18px 28px 28px;
}
.offer-modal-hero span {
    width: fit-content;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(52,168,83,.12);
    color: var(--green-dark);
    font-weight: 900;
}
.offer-modal-hero h3 {
    margin: 12px 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.25;
}
.offer-modal-hero p,
.offer-transfer p,
.offer-booking-cta p {
    color: var(--muted);
}
.offer-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.offer-modal-actions a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    background: #fff;
    color: var(--green-dark);
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(22,36,26,.08);
}
.offer-details-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}
.offer-details-grid section,
.offer-list-columns section,
.offer-transfer,
.offer-faq,
.offer-booking-cta {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(22,36,26,.05);
}
.offer-details-grid section {
    padding: 14px;
}
.offer-details-grid h4,
.offer-list-columns h4,
.offer-transfer h4,
.offer-faq h4,
.offer-booking-cta h4 {
    margin: 0 0 8px;
}
.offer-details-grid p {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
}
.offer-details-grid .price-panel {
    background: var(--green-dark);
    color: #fff;
}
.price-panel p,
.price-panel small {
    color: rgba(255,255,255,.9);
}
.offer-list-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}
.offer-wide-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.offer-list-columns section,
.offer-transfer,
.offer-faq {
    padding: 16px;
}
.offer-list-columns ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.offer-list-columns li {
    position: relative;
    padding: 7px 20px 7px 0;
    color: var(--muted);
}
html[dir="ltr"] .offer-list-columns li {
    padding: 7px 0 7px 20px;
}
.offer-list-columns li::before {
    position: absolute;
    content: "";
    top: 18px;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}
html[dir="ltr"] .offer-list-columns li::before {
    right: auto;
    left: 0;
}
.offer-transfer,
.offer-faq,
.offer-booking-cta {
    margin-top: 12px;
}
.offer-simple-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.offer-simple-list li {
    padding: 7px 0;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
}
.offer-simple-list li:last-child {
    border-bottom: 0;
}
.offer-faq details {
    border-top: 1px solid var(--line);
    padding: 10px 0;
}
.offer-faq summary {
    color: var(--ink);
    font-weight: 900;
    cursor: pointer;
}
.offer-faq details p {
    margin-bottom: 0;
    color: var(--muted);
}
.offer-booking-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    background: linear-gradient(135deg, var(--green-dark), #0d2a17);
    color: #fff;
}
.offer-booking-cta h4,
.offer-booking-cta p {
    color: #fff;
}
.offer-booking-cta p {
    opacity: .82;
}
.offer-booking-cta .btn {
    flex: 0 0 auto;
}
.offer-page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(105deg, rgba(8,18,12,.94) 0%, rgba(15,55,30,.78) 52%, rgba(15,55,30,.28) 100%),
        var(--offer-hero) center/cover;
}
.offer-page-hero::before {
    position: absolute;
    content: "";
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.34) 100%);
}
.offer-page-hero-inner {
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .45fr);
    gap: 28px;
    align-items: center;
    padding-block: 72px;
}
.offer-page-hero h1 {
    max-width: 900px;
    color: #fff;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.15;
}
.offer-page-hero p {
    max-width: 760px;
    color: rgba(255,255,255,.86);
    font-size: 18px;
}
.offer-back-link {
    width: fit-content;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-weight: 900;
}
.offer-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.offer-page-actions a,
.offer-live-panel {
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(8,18,12,.52);
    color: #fff;
    backdrop-filter: blur(12px);
}
.offer-page-actions a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 8px;
    font-weight: 900;
}
.offer-live-panel {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(0,0,0,.18);
}
.offer-live-panel div {
    padding: 16px;
    border-radius: 8px;
    background: rgba(255,255,255,.1);
}
.offer-live-panel span,
.offer-live-panel small {
    display: block;
    color: rgba(255,255,255,.74);
    font-weight: 800;
}
.offer-live-panel strong {
    display: block;
    color: #fff;
    font-size: 30px;
    font-weight: 900;
}
.offer-page-gallery-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(20,116,92,.06), transparent 38%),
        linear-gradient(180deg, #fff 0%, #f4f8f5 100%);
}
.offer-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 16px;
}
.offer-gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    padding: 0;
    border: 1px solid rgba(255,255,255,.78);
    border-radius: 18px;
    background: #dfe9e2;
    box-shadow: 0 18px 40px rgba(22,36,26,.14);
    cursor: zoom-in;
    isolation: isolate;
    transform: translateZ(0);
}
.offer-gallery-item.is-featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 424px;
}
.offer-gallery-grid.is-compact-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1160px;
    margin-inline: auto;
}
.offer-gallery-grid.is-compact-gallery .offer-gallery-item {
    aspect-ratio: 4 / 3;
    min-height: 0;
}
.offer-gallery-item::before,
.offer-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.offer-gallery-item::before {
    background:
        linear-gradient(180deg, rgba(5,22,15,0) 45%, rgba(5,22,15,.58) 100%),
        radial-gradient(circle at 22% 18%, rgba(255,255,255,.38), transparent 28%);
    opacity: .72;
    transition: opacity .35s ease;
}
.offer-gallery-item::after {
    inset: 9px;
    border: 1px solid rgba(255,255,255,.56);
    border-radius: 13px;
    opacity: .75;
    transition: transform .35s ease, opacity .35s ease;
}
.offer-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease, filter .35s ease;
}
.offer-gallery-frame {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255,255,255,.28), transparent 35%, rgba(255,255,255,.16));
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}
.offer-gallery-meta {
    position: absolute;
    inset-inline: 18px;
    bottom: 16px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.offer-gallery-meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 32px;
    border: 1px solid rgba(255,255,255,.52);
    border-radius: 999px;
    background: rgba(6,22,17,.26);
    backdrop-filter: blur(10px);
    font-size: 13px;
}
.offer-gallery-item:hover img,
.offer-gallery-item:focus-visible img {
    filter: saturate(1.07) contrast(1.04);
    transform: scale(1.06);
}
.offer-gallery-item:hover::before,
.offer-gallery-item:focus-visible::before {
    opacity: .92;
}
.offer-gallery-item:hover::after,
.offer-gallery-item:focus-visible::after {
    opacity: 1;
    transform: scale(.985);
}
.offer-gallery-item:hover .offer-gallery-frame,
.offer-gallery-item:focus-visible .offer-gallery-frame {
    opacity: 1;
}
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 72px 92px;
    background: rgba(5,16,13,.88);
    backdrop-filter: blur(14px);
}
.gallery-lightbox[hidden] {
    display: none;
}
.gallery-lightbox figure {
    width: min(1120px, 100%);
    max-height: calc(100vh - 150px);
    margin: 0;
    display: grid;
    gap: 12px;
}
.gallery-lightbox img {
    width: 100%;
    max-height: calc(100vh - 190px);
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0,0,0,.42);
}
.gallery-lightbox figcaption {
    color: #fff;
    text-align: center;
    font-weight: 800;
}
.gallery-lightbox-close,
.gallery-lightbox-nav {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.14);
    color: #fff;
    backdrop-filter: blur(12px);
    cursor: pointer;
}
.gallery-lightbox-close {
    top: 24px;
    inset-inline-end: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
}
.gallery-lightbox-nav {
    top: 50%;
    width: 52px;
    height: 72px;
    border-radius: 999px;
    transform: translateY(-50%);
}
.gallery-lightbox-prev {
    inset-inline-start: 24px;
}
.gallery-lightbox-next {
    inset-inline-end: 24px;
}
.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
    background: rgba(255,255,255,.24);
}
.offer-page-details {
    margin-top: 0;
}
.home-visas {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(52,168,83,.06) 0 25%, transparent 25% 50%, rgba(52,168,83,.04) 50% 75%, transparent 75%) 0 0 / 28px 28px,
        linear-gradient(180deg, #fff 0%, #f8fbf7 100%);
}
.home-visas .shell { position: relative; z-index: 1; }
.home-visas .section-head {
    margin-inline: auto;
    text-align: center;
}
.home-visas .section-head span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid rgba(52,168,83,.16);
    border-radius: 999px;
    background: rgba(52,168,83,.08);
}
.visa-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}
.visa-feature-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid rgba(223,233,220,.95);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(248,251,247,.94)),
        #fff;
    box-shadow: 0 14px 34px rgba(22,36,26,.07);
    opacity: 0;
    transform: translateY(18px);
    animation: visaCardIn .72s cubic-bezier(.2,.8,.2,1) forwards;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.visa-feature-card:nth-child(2) { animation-delay: .09s; }
.visa-feature-card:nth-child(3) { animation-delay: .18s; }
.visa-feature-card::before {
    position: absolute;
    content: "";
    inset-inline: 0;
    top: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green), #88d66d, var(--green-dark));
    z-index: -1;
}
.visa-feature-card::after {
    position: absolute;
    content: "";
    inset-inline-end: -40px;
    top: 30px;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(52,168,83,.08);
    border-radius: 30px;
    transform: rotate(18deg);
    background: linear-gradient(135deg, rgba(52,168,83,.08), rgba(255,255,255,0));
    z-index: -1;
    transition: transform .35s ease;
}
.visa-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(52,168,83,.45);
    box-shadow: var(--shadow);
}
.visa-feature-card:hover::after {
    transform: rotate(10deg) translateY(-8px);
}
.visa-feature-tag {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(52,168,83,.1);
    color: var(--green-dark);
    font-weight: 900;
    font-size: 13px;
}
.visa-feature-tag i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 5px 14px rgba(22,36,26,.08);
}
.visa-feature-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1.35;
}
.visa-feature-card p {
    color: var(--muted);
    line-height: 1.85;
}
.visa-feature-card strong {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    padding: 9px 14px;
    border: 1px solid rgba(52,168,83,.18);
    border-radius: 999px;
    background: rgba(52,168,83,.08);
    color: var(--green-dark);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.visa-feature-card:hover strong {
    background: var(--green);
    color: #fff;
    transform: translateY(-2px);
}
.visa-feature-card strong i {
    transition: transform .2s ease;
}
.visa-feature-card:hover strong i {
    transform: translateX(-3px);
}
.home-service-strip {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(340px,460px);
    gap: 30px;
    align-items: center;
}
.home-cta {
    padding: 54px 0;
    background: #102015;
    color: #fff;
}
.home-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.home-cta span,
.home-cta h2 { color: #fff; }
.home-cta span { font-weight: 900; opacity: .76; }
.home-cta h2 { max-width: 760px; margin-bottom: 0; }
.page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 390px;
    display: flex;
    align-items: center;
    padding: 92px 0 76px;
    background: var(--soft);
}
.page-hero-premium {
    color: #fff;
    background:
        linear-gradient(105deg, rgba(8,18,12,.94) 0%, rgba(15,55,30,.82) 46%, rgba(15,55,30,.3) 100%),
        var(--page-hero-image, url("../images/backgrounds/world.jpg")) center/cover;
}
.page-hero.compact { min-height: 340px; padding-block: 78px 66px; }
.page-hero-content {
    max-width: 850px;
}
.page-hero-content h1 {
    max-width: 900px;
    margin-bottom: 14px;
    color: #fff;
    font-size: clamp(42px, 5.7vw, 78px);
    letter-spacing: 0;
    text-shadow: 0 18px 46px rgba(0,0,0,.24);
    overflow-wrap: anywhere;
}
.page-hero p { max-width: 760px; color: rgba(255,255,255,.88); font-size: 19px; }
.page-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 26px;
}
.page-hero-meta span {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-weight: 900;
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 32px rgba(0,0,0,.1);
}
.page-hero-meta i {
    color: #baf0bf;
}
.info-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.info-panel ul { margin: 0; padding: 0; list-style: none; }
.info-panel li { padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.info-panel li:before { content: "✓"; color: var(--green); font-weight: 900; margin-left: 8px; }
.info-panel.accent { background: var(--green-dark); color: #fff; }
.info-panel.accent p { color: rgba(255,255,255,.84); }

.lead-card { display: grid; gap: 12px; }
.lead-card [hidden] { display: none !important; }
.lead-head { display: flex; align-items: center; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.lead-head span { width: 42px; height: 42px; border-radius: 50%; background: #25d366; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 900; direction: ltr; }
.lead-head small { display: block; color: var(--muted); }
.direct-actions { display: grid; grid-template-columns: 1fr 1fr; }
.direct-actions a { min-height: 46px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; font-weight: 900; }
.direct-actions .wa { background: #25d366; color: #fff; }
.direct-actions .call { background: var(--soft); color: var(--green-dark); border: 1px solid var(--line); direction: ltr; }
.lead-card label { display: grid; gap: 6px; color: var(--ink); font-weight: 800; }
.lead-card input, .lead-card textarea, .lead-card select { width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 11px 12px; color: var(--ink); background: #fff; outline: none; }
.lead-card select {
    min-height: 48px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}
.checkbox-choice-group {
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(52,168,83,.18);
    border-radius: 8px;
    background: linear-gradient(180deg, #fbfffb, var(--soft));
}
.checkbox-choice-group > span {
    color: var(--ink);
    font-weight: 800;
}
.checkbox-choice-group label {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}
.checkbox-choice-group input {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    padding: 0;
    border: 2px solid rgba(52,168,83,.45);
    border-radius: 4px;
    appearance: none;
    cursor: pointer;
}
.checkbox-choice-group input:checked {
    background: var(--green);
    border-color: var(--green);
    box-shadow: inset 0 0 0 3px #fff;
}
.inline-choice-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.inline-choice-group > span {
    grid-column: 1 / -1;
}
.inline-choice-group label {
    min-height: 38px;
    padding: 7px 9px;
    justify-content: center;
}
.inline-choice-group input {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
}
.umrah-nights-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(52,168,83,.18);
    border-radius: 8px;
    background: linear-gradient(180deg, #fbfffb, var(--soft));
}
.umrah-nights-group label {
    gap: 8px;
}
.umrah-nights-group label > span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 900;
}
.number-stepper {
    min-height: 48px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 6px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(22,36,26,.05);
}
.number-stepper button {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    background: rgba(52,168,83,.1);
    color: var(--green-dark);
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.number-stepper button:hover {
    background: var(--green);
    color: #fff;
    transform: translateY(-1px);
}
.number-stepper input {
    height: 38px;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    direction: ltr;
    -moz-appearance: textfield;
}
.number-stepper input:focus {
    box-shadow: none;
}
.number-stepper input::-webkit-outer-spin-button,
.number-stepper input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}
.date-picker-field {
    position: relative;
    display: block;
}
.date-picker-trigger {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(90deg, transparent calc(100% - 48px), rgba(52,168,83,.09) calc(100% - 48px)),
        #fff;
    color: var(--muted);
    font: inherit;
    font-weight: 900;
    text-align: right;
    cursor: pointer;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
html[dir="ltr"] .date-picker-trigger {
    background:
        linear-gradient(270deg, transparent calc(100% - 48px), rgba(52,168,83,.09) calc(100% - 48px)),
        #fff;
    text-align: left;
}
.date-picker-trigger i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(52,168,83,.12);
    color: var(--green-dark);
}
.date-picker-trigger.has-value {
    color: var(--ink);
}
.date-picker-trigger:hover,
.date-picker-trigger:focus,
.date-picker-trigger.is-open {
    border-color: rgba(52,168,83,.55);
    background-color: #fbfffb;
    box-shadow: 0 0 0 3px rgba(52,168,83,.12);
}
.site-date-picker {
    position: absolute;
    z-index: 120;
    max-width: calc(100vw - 24px);
    padding: 14px;
    border: 1px solid rgba(52,168,83,.18);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(22,36,26,.18);
    direction: rtl;
}
html[dir="ltr"] .site-date-picker {
    direction: ltr;
}
.site-date-picker[hidden] {
    display: none;
}
.site-date-head {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.site-date-head strong {
    color: var(--ink);
    text-align: center;
    font-size: 16px;
    font-weight: 900;
}
.site-date-nav {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
    color: var(--green-dark);
    cursor: pointer;
}
.site-date-nav:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}
.site-date-week,
.site-date-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}
.site-date-week {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
}
.site-date-week span {
    min-height: 24px;
}
.site-date-day {
    aspect-ratio: 1;
    min-width: 0;
    border: 1px solid transparent;
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-weight: 900;
    cursor: pointer;
}
.site-date-day:hover {
    border-color: rgba(52,168,83,.35);
    background: var(--soft);
    color: var(--green-dark);
}
.site-date-day.is-muted {
    color: #9aa69d;
}
.site-date-day.is-today {
    border-color: rgba(52,168,83,.42);
    background: rgba(52,168,83,.08);
}
.site-date-day.is-selected {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    box-shadow: 0 10px 22px rgba(52,168,83,.24);
}
.site-date-actions {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}
.site-date-actions button {
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
    color: var(--green-dark);
    font-weight: 900;
    cursor: pointer;
}
.site-date-actions button:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}
.lead-card textarea { min-height: 92px; resize: vertical; }
.lead-card input:focus, .lead-card textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(52,168,83,.12); }
.saudi-hero-form .lead-card {
    max-width: 430px;
    margin-inline-start: auto;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 28px 70px rgba(5, 18, 9, .24);
}
.saudi-hero-form .lead-card textarea {
    min-height: 70px;
}
.saudi-visa-request-section {
    padding-top: 34px;
}
.saudi-visa-request {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(340px, 1fr);
    gap: 18px;
    align-items: stretch;
    padding: 16px;
    border: 1px solid rgba(23, 63, 37, .10);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.94), rgba(246,251,246,.92)),
        repeating-linear-gradient(90deg, rgba(23,63,37,.035) 0 1px, transparent 1px 42px);
    box-shadow: 0 24px 60px rgba(16, 32, 20, .10);
}
.saudi-request-copy {
    display: grid;
    align-content: center;
    gap: 10px;
    min-height: 100%;
    padding: 28px;
    border-radius: 22px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(13, 37, 18, .92), rgba(35, 88, 42, .82)),
        url("media/hero-umrah.jpg") center / cover;
}
.saudi-request-copy span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    max-width: 100%;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    font-weight: 1000;
}
.saudi-request-copy h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.25;
}
.saudi-request-copy p {
    margin: 0;
    color: rgba(255,255,255,.82);
    line-height: 1.9;
}
.saudi-visa-request .lead-card {
    box-shadow: none;
}

.site-footer {
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(75,160,86,.12), transparent 34%),
        #0f1b14;
    color: #fff;
    padding-top: 18px;
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.15fr) minmax(260px, 1fr) minmax(240px, .95fr);
    gap: 12px;
    align-items: stretch;
}
.footer-brand-card,
.footer-links-card,
.footer-contact-card {
    min-height: 0;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 16px;
    background: rgba(255,255,255,.045);
}
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
    color: #fff;
}
.footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex: 0 0 48px;
    border-radius: 13px;
    background: #fff;
    padding: 6px;
}
.footer-brand strong,
.footer-brand small {
    display: block;
}
.footer-brand strong {
    color: #fff;
    font-size: 17px;
    line-height: 1.35;
}
.footer-brand small {
    color: rgba(255,255,255,.62);
    font-weight: 800;
}
.site-footer p {
    margin: 0 0 8px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.65;
}
.site-footer h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 16px;
}
.footer-links-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
}
.footer-links-list a {
    display: flex;
    align-items: center;
    min-height: 30px;
    margin: 0;
    padding: 6px 8px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 900;
    transition: background .2s ease, color .2s ease;
}
.footer-links-list a:hover {
    background: var(--green);
    color: #fff;
}
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 8px;
}
.footer-social a {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.footer-social a:hover {
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-3px);
}
.footer-contact-card {
    display: grid;
    align-content: start;
    gap: 7px;
}
.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    margin: 0;
    padding: 6px 8px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.84);
    font-size: 12px;
    font-weight: 900;
    direction: ltr;
}
.footer-contact-link i {
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 8px;
    background: rgba(75,160,86,.18);
    color: #8dde91;
}
.footer-contact-link span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.footer-contact-link.whatsapp {
    background: rgba(75,160,86,.16);
    color: #fff;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 10px;
    padding: 10px 0 12px;
    border-top: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.62);
    font-size: 12px;
}
.footer-bottom span,
.footer-bottom a {
    margin: 0;
    color: rgba(255,255,255,.70);
}
.footer-bottom a {
    font-weight: 900;
}
.footer-bottom a:hover {
    color: #fff;
}
.floating-social {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 90;
    width: 50px;
    height: 50px;
}
html[dir="ltr"] .floating-social {
    left: auto;
    right: 20px;
}
.floating-social-list {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.floating-social.is-open .floating-social-list {
    pointer-events: auto;
}
.floating-social-list a,
.floating-social-toggle {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 14px 30px rgba(16,32,21,.18);
}
.floating-social-list a {
    position: absolute;
    left: 0;
    bottom: 0;
    isolation: isolate;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translate(0, 0) scale(.45);
    transition: opacity .22s ease, visibility .22s ease, transform .28s cubic-bezier(.2,.9,.2,1.15), filter .2s ease;
    will-change: transform, opacity;
}
.floating-social-list a::before {
    position: absolute;
    content: "";
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255,255,255,.34), rgba(255,255,255,.02) 44%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.4), inset 0 -10px 18px rgba(0,0,0,.08);
}
.floating-social-list a::after {
    position: absolute;
    content: "";
    inset: -4px;
    z-index: -2;
    border-radius: inherit;
    background: rgba(255,255,255,.18);
    opacity: 0;
    transform: scale(.86);
    transition: opacity .2s ease, transform .2s ease;
}
.floating-social-list a:hover::after {
    opacity: 1;
    transform: scale(1);
}
html[dir="ltr"] .floating-social-list a {
    left: auto;
    right: 0;
}
.floating-social.is-open .floating-social-list a {
    opacity: 1;
    visibility: visible;
    animation: socialPop .42s cubic-bezier(.2,.9,.2,1.22) both;
}
.floating-social.is-open .floating-social-list a { transform: translate(var(--social-x, 0), var(--social-y, 0)) scale(1); }
.floating-social.is-open .floating-social-list a:nth-child(1) { --social-x: 0; --social-y: -60px; transition-delay: .02s; animation-delay: .02s; }
.floating-social.is-open .floating-social-list a:nth-child(2) { --social-x: 42px; --social-y: -54px; transition-delay: .04s; animation-delay: .04s; }
.floating-social.is-open .floating-social-list a:nth-child(3) { --social-x: 76px; --social-y: -30px; transition-delay: .06s; animation-delay: .06s; }
.floating-social.is-open .floating-social-list a:nth-child(4) { --social-x: 92px; --social-y: -64px; transition-delay: .08s; animation-delay: .08s; }
.floating-social.is-open .floating-social-list a:nth-child(5) { --social-x: 48px; --social-y: -96px; transition-delay: .1s; animation-delay: .1s; }
.floating-social.is-open .floating-social-list a:nth-child(6) { --social-x: 104px; --social-y: -106px; transition-delay: .12s; animation-delay: .12s; }
html[dir="ltr"] .floating-social.is-open .floating-social-list a:nth-child(2) { --social-x: -48px; }
html[dir="ltr"] .floating-social.is-open .floating-social-list a:nth-child(3) { --social-x: -72px; }
html[dir="ltr"] .floating-social.is-open .floating-social-list a:nth-child(4) { --social-x: -48px; }
html[dir="ltr"] .floating-social.is-open .floating-social-list a:nth-child(5) { --social-x: -100px; }
html[dir="ltr"] .floating-social.is-open .floating-social-list a:nth-child(6) { --social-x: -114px; }
.floating-social-list a:hover,
.floating-social-toggle:hover {
    filter: brightness(1.04);
}
.floating-social-list i,
.floating-social-toggle i {
    font-size: 19px;
}
.floating-social-list i {
    filter: drop-shadow(0 2px 5px rgba(0,0,0,.14));
}
.floating-social-toggle {
    position: relative;
    border: 0;
    background: linear-gradient(135deg, #eaffec, #fff);
    color: var(--green-dark);
    cursor: pointer;
    overflow: hidden;
    border: 2px solid rgba(52,168,83,.18);
    box-shadow: 0 16px 34px rgba(16,32,21,.16), inset 0 0 0 6px rgba(52,168,83,.1);
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    will-change: transform;
}
.floating-social-toggle:hover {
    transform: translateY(-2px) rotate(-4deg);
}
.floating-social-lottie {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 52px;
    height: 52px;
    display: none;
    transform: translate(-50%, -50%) scale(1.08);
    pointer-events: none;
    clip-path: circle(18px at 50% 50%);
}
html.lottie-ready .floating-social-lottie {
    display: block;
}
html.lottie-ready .floating-social-toggle .icon-open {
    display: none;
}
.floating-social-toggle::before {
    position: absolute;
    content: "";
    inset: -7px;
    z-index: -1;
    border-radius: inherit;
    background: rgba(52,168,83,.16);
    animation: socialPulse 1.9s ease-out infinite;
}
.floating-social-toggle .icon-close {
    display: none;
}
.floating-social.is-open .floating-social-toggle {
    background: #e85a55;
    color: #fff;
    border-color: #e85a55;
    box-shadow: 0 18px 40px rgba(232,90,85,.28);
    transform: rotate(90deg);
}
.floating-social.is-open .floating-social-toggle::before {
    display: none;
}
.floating-social.is-open .floating-social-toggle .icon-open {
    display: none;
}
.floating-social.is-open .floating-social-lottie {
    display: none;
}
.floating-social.is-open .floating-social-toggle .icon-close {
    display: inline-block;
}
.social-orb {
    border: 1px solid rgba(255,255,255,.28);
}
.social-call { background: linear-gradient(145deg, #f7fff8, #33bf58); color: #258844; }
.social-instagram { background: radial-gradient(circle at 28% 108%, #ffde67 0 18%, #ff6b4a 40%, #b931e8 66%, #365cf6 100%); }
.social-snapchat { background: linear-gradient(145deg, #fffef0, #ffe53b); color: #111 !important; }
.social-tiktok { background: linear-gradient(145deg, #2a2a2a, #050505); color: #fff; }
.social-whatsapp { background: linear-gradient(145deg, #f4fff5, #21c85d); color: #1f944a; }
.social-facebook { background: linear-gradient(145deg, #eef2ff, #486be2); color: #fff; }

@keyframes socialPulse {
    0% { opacity: .9; transform: scale(.88); }
    100% { opacity: 0; transform: scale(1.28); }
}

@keyframes socialPop {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(.45);
        filter: blur(3px);
    }
    62% {
        filter: blur(0);
        transform: translate(var(--social-x, 0), var(--social-y, 0)) scale(1.12);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translate(var(--social-x, 0), var(--social-y, 0)) scale(1);
    }
}

@keyframes slideFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slidePanelIn {
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes sliderProgress {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(8deg); }
}

@keyframes visaCardIn {
    to { opacity: 1; transform: translateY(0); }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .site-header,
    .slide-benefits span,
    .slide-ad-meta div,
    .slider-arrow,
    .slider-dots button {
        background-color: rgba(16, 32, 21, .86);
    }

    .site-header {
        background-color: rgba(255,255,255,.98);
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

.mobile-panel { position: fixed; inset: 0; z-index: 100; pointer-events: none; }
.mobile-panel.is-open { pointer-events: auto; }
.mobile-backdrop { position: absolute; inset: 0; background: rgba(10,20,13,.52); opacity: 0; transition: .2s ease; }
.mobile-panel.is-open .mobile-backdrop { opacity: 1; }
.mobile-drawer {
    position: absolute; inset-block: 0; right: 0; width: min(90vw, 390px); background: var(--soft);
    transform: translateX(105%); transition: .25s ease; padding: 16px; overflow-y: auto; box-shadow: -18px 0 45px rgba(0,0,0,.18);
}
html[dir="ltr"] .mobile-drawer {
    right: auto;
    left: 0;
    transform: translateX(-105%);
    box-shadow: 18px 0 45px rgba(0,0,0,.18);
}
.mobile-panel.is-open .mobile-drawer { transform: none; }
.mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
    margin-bottom: 14px;
}
.mobile-top .brand {
    padding: 5px 8px;
    border-radius: 999px;
    background: #fff;
}
.mobile-close {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-size: 28px;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(22,36,26,.06);
}
.mobile-quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}
.mobile-quick-actions a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    font-weight: 900;
}
.mobile-quick-actions .whatsapp {
    background: #25d366;
    color: #fff;
}
.mobile-quick-actions .call {
    background: var(--green);
    color: #fff;
}
.mobile-quick-actions .language {
    grid-column: 1 / -1;
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    direction: ltr;
}
.mobile-nav { display: grid; gap: 8px; }
.mobile-link {
    width: 100%; min-height: 52px; display: flex; align-items: center; justify-content: space-between;
    padding: 12px 14px; border-radius: 8px; border: 1px solid var(--line); background: #fff; color: var(--ink); font-weight: 900; text-align: right;
}
html[dir="ltr"] .mobile-link { text-align: left; }
.mobile-link i { font-size: 12px; transition: transform .2s ease; }
.mobile-group.is-open > .mobile-link i { transform: rotate(180deg); }
.mobile-link:hover, .mobile-group.is-open > .mobile-link { background: var(--green); color: #fff; border-color: var(--green); }
.mobile-subnav { display: none; margin-top: 8px; padding: 8px; border-radius: 8px; border: 1px solid var(--line); background: #edf7ed; }
.mobile-group.is-open .mobile-subnav { display: grid; gap: 4px; }
.mobile-subnav a { padding: 10px 12px; border-radius: 8px; color: var(--ink); font-weight: 800; }
.mobile-subnav a:hover { background: #fff; color: var(--green-dark); }
.mobile-contact { margin-top: 18px; padding: 16px; border-radius: 8px; border: 1px solid var(--line); background: #fff; display: grid; gap: 8px; }
.mobile-contact a { color: var(--green-dark); font-weight: 900; }
body.menu-open { overflow: hidden; }

.contact-lines { display: grid; gap: 10px; }
.contact-lines a { color: var(--green-dark); font-weight: 900; direction: ltr; text-align: right; }
html[dir="ltr"] .contact-lines a { text-align: left; }

@media (max-width: 1190px) {
    .header-shell {
        grid-template-columns: minmax(160px, 190px) minmax(0, 1fr) auto;
        gap: 10px;
    }
    .brand small { display: none; }
    .desktop-nav { gap: 2px; padding: 6px; }
    .nav-link,
    .nav-toggle {
        min-height: 38px;
        padding-inline: 8px;
        font-size: 12px;
    }
    .header-contact-item { padding-inline: 11px; }
    .language-switch {
        min-width: 52px;
        padding-inline: 10px;
    }
    .all-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .all-offers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    :root {
        --header-height: 74px;
        --hero-height: auto;
    }
    .brand { min-width: auto; }
    .header-shell {
        display: flex;
        min-height: 74px;
        justify-content: space-between;
        gap: 12px;
    }
    .desktop-nav, .header-call, .header-contact-duo, .language-switch { display: none; }
    .header-actions { min-width: auto; }
    .mobile-open { display: block; }
    .hero-grid, .visa-grid, .split { grid-template-columns: 1fr; }
    .all-services-hero-inner,
    .all-offers-hero-inner,
    .all-services-head {
        grid-template-columns: 1fr;
    }
    .all-services-hero {
        padding: 70px 0 42px;
    }
    .all-offers-hero {
        padding: 70px 0 42px;
    }
    .all-services-feature {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .hero-grid, .visa-grid { min-height: auto; padding-block: 44px; }
    .visa-hero-new {
        background-position: center;
    }
    .page-hero {
        min-height: 330px;
        padding: 62px 0 54px;
    }
    .page-hero.compact {
        min-height: 300px;
        padding-block: 56px 48px;
    }
    .page-hero-content {
        max-width: 720px;
    }
    .page-hero-content h1 {
        max-width: 760px;
        font-size: clamp(36px, 7vw, 58px);
    }
    .page-hero p {
        max-width: 680px;
        font-size: clamp(16px, 2.4vw, 19px);
    }
    .page-hero-meta {
        gap: 8px;
        margin: 18px 0 20px;
    }
    .page-hero-meta span {
        min-height: 36px;
        padding: 7px 10px;
        font-size: 13px;
    }
    .home-slider,
    .home-slider-track,
    .rehlty-hero-swiper,
    .rehlty-hero-swiper .swiper-wrapper,
    .home-slide,
    .home-slide-inner {
        min-height: auto;
    }
    .home-slide { background-position: center; }
    .home-slide-inner {
        grid-template-columns: 1fr;
        width: min(100% - 32px, 1160px);
        padding: clamp(52px, 8vh, 74px) 0 142px;
    }
    .home-slide-copy {
        max-width: 720px;
    }
    .home-slide-copy h1 {
        max-width: 760px;
        font-size: clamp(38px, 7vw, 58px);
    }
    .home-slide-copy p {
        max-width: 680px;
        font-size: clamp(17px, 2.4vw, 20px);
    }
    .slide-ad-meta {
        grid-template-columns: repeat(3, minmax(0,1fr));
        max-width: 100%;
        gap: 10px;
    }
    .slide-ad-meta div {
        min-height: 108px;
        padding: 15px;
    }
    .home-slider-controls {
        inset: auto 0 54px;
        height: 48px;
        justify-content: center;
        gap: 14px;
        pointer-events: none;
    }
    .slider-arrow {
        position: static;
        top: auto;
        bottom: auto;
        flex: 0 0 auto;
        transform: none;
    }
    [data-slider-prev],
    [data-slider-next] {
        right: auto;
        left: auto;
    }
    .rehlty-slider-prev { order: 1; }
    .rehlty-slider-pagination { order: 2; }
    .rehlty-slider-next { order: 3; }
    .slider-dots {
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
    }
    .slider-arrow:hover { transform: scale(1.04); }
    .quick-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .card-grid, .info-grid, .footer-grid, .visa-feature-grid, .home-service-strip, .showcase-grid, .tourism-offers-grid, .google-reviews-layout, .travel-location-card, .offer-modal-hero, .offer-details-grid, .offer-list-columns, .offer-page-hero-inner, .offer-gallery-grid { grid-template-columns: 1fr; }
    .footer-grid {
        gap: 12px;
    }
    .footer-brand-card,
    .footer-links-card,
    .footer-contact-card {
        min-height: 0;
    }
    .tourism-offers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-blog-grid,
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .google-reviews-summary {
        min-height: auto;
    }
    .google-reviews-head {
        align-items: stretch;
        flex-direction: column;
        text-align: center;
    }
    .google-badge,
    .google-rating-pill,
    .google-reviews-actions .btn {
        margin-inline: auto;
    }
    .google-reviews-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .travel-location-copy {
        min-height: auto;
    }
    .travel-map-card {
        min-height: 320px;
    }
    .blog-post-layout {
        grid-template-columns: 1fr;
    }
    .faq-layout {
        grid-template-columns: 1fr;
    }
    .docs-hero-card,
    .docs-info-layout {
        grid-template-columns: 1fr;
    }
    .docs-checklist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .docs-send-card {
        position: static;
    }
    .faq-help-card {
        position: static;
    }
    .blog-related {
        position: static;
    }
    .tourism-offer-card {
        grid-template-rows: 280px 1fr;
        border-radius: 20px;
    }
    .offer-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .offer-gallery-grid.is-compact-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .offer-gallery-item.is-featured {
        grid-column: 1 / -1;
        min-height: 360px;
    }
    .gallery-lightbox {
        padding: 68px 22px 34px;
    }
    .gallery-lightbox-nav {
        top: auto;
        bottom: 18px;
        width: 48px;
        height: 48px;
        transform: none;
    }
    .showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .all-service-card {
        grid-template-rows: 230px 1fr;
    }
    .all-offer-card {
        grid-template-columns: minmax(240px, 42%) minmax(0, 1fr);
    }
    .showcase-card {
        grid-template-rows: 210px 1fr;
        min-height: 0;
    }
    .offer-modal {
        padding: 10px;
    }
    .offer-modal-panel {
        max-height: 92vh;
        padding: 12px;
    }
    .offer-modal-hero img {
        min-height: 260px;
    }
    .offer-modal-hero > div {
        padding: 18px;
    }
    .offer-booking-cta {
        align-items: stretch;
        flex-direction: column;
    }
    .home-cta-inner { align-items: stretch; flex-direction: column; }
    .stats { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .shell { width: min(100% - 24px, 1160px); }
    .all-services-hero {
        padding: 54px 0 34px;
    }
    .all-offers-hero {
        padding: 54px 0 34px;
    }
    .all-services-copy h1 {
        font-size: 38px;
    }
    .all-offers-copy h1 {
        font-size: 38px;
    }
    .all-services-copy p {
        font-size: 16px;
    }
    .all-offers-copy p {
        font-size: 16px;
    }
    .all-services-actions,
    .all-services-actions .btn {
        width: 100%;
    }
    .all-services-feature,
    .all-services-grid {
        grid-template-columns: 1fr;
    }
    .all-service-card {
        grid-template-rows: 220px 1fr;
        border-radius: 18px;
    }
    .all-offer-card {
        grid-template-columns: 1fr;
        grid-template-rows: 230px 1fr;
        min-height: 0;
        border-radius: 18px;
    }
    .site-header {
        background: rgba(255,255,255,.96);
    }
    .header-shell {
        min-height: 68px;
        padding-block: 8px;
    }
    .brand {
        max-width: calc(100% - 64px);
        gap: 9px;
        padding: 6px 9px 6px 12px;
        border: 1px solid rgba(223,233,220,.9);
        border-radius: 999px;
        background: #fff;
        box-shadow: 0 8px 22px rgba(22,36,26,.06);
    }
    html[dir="ltr"] .brand {
        padding: 6px 12px 6px 9px;
    }
    .brand img {
        width: 42px;
        height: 42px;
        padding: 3px;
        flex: 0 0 auto;
        box-shadow: none;
    }
    .brand strong {
        max-width: 132px;
        display: block;
        overflow: hidden;
        color: var(--ink);
        font-size: 15px;
        line-height: 1.25;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .tourism-offers-grid {
        grid-template-columns: 1fr;
    }
    .home-blog-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .google-reviews-summary {
        gap: 16px;
        padding: 22px;
        border-radius: 24px;
    }
    .google-rating-panel {
        align-items: stretch;
        flex-direction: column;
    }
    .google-rating-panel strong {
        width: 100%;
    }
    .google-review-link {
        width: 100%;
    }
    .google-reviews-section {
        padding-block: 54px;
    }
    .google-reviews-head h2 {
        font-size: 34px;
    }
    .google-rating-pill {
        width: 100%;
        min-width: 0;
        grid-template-columns: auto 1fr;
    }
    .google-rating-pill > i {
        display: none;
    }
    .google-reviews-marquee {
        margin-inline: -12px;
        mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    }
    .google-reviews-section .google-review-card {
        flex-basis: 284px;
        min-height: 206px;
        padding: 18px;
    }
    .travel-location-section {
        padding-block: 44px;
    }
    .travel-location-card {
        gap: 14px;
    }
    .travel-location-copy {
        padding: 22px;
        border-radius: 24px;
    }
    .travel-location-copy h2 {
        font-size: 32px;
    }
    .location-main-link {
        width: 100%;
    }
    .travel-map-card {
        min-height: 270px;
        border-radius: 24px;
    }
    .map-plane-overlay {
        top: 48%;
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    .map-plane-overlay::before {
        right: 28px;
        height: 6px;
    }
    .map-location-label {
        right: 16px;
        bottom: 16px;
    }
    .google-reviews-board {
        grid-template-columns: 1fr;
    }
    .google-review-card,
    .google-review-placeholder {
        border-radius: 22px;
    }
    .home-blog-card,
    .blog-card {
        grid-template-rows: 230px 1fr;
    }
    .site-footer {
        padding-top: 14px;
    }
    .footer-brand-card,
    .footer-links-card,
    .footer-contact-card {
        padding: 12px;
        border-radius: 14px;
    }
    .footer-brand {
        margin-bottom: 7px;
    }
    .footer-logo {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        border-radius: 12px;
    }
    .footer-brand strong {
        font-size: 17px;
    }
    .site-footer p {
        font-size: 13px;
        line-height: 1.7;
    }
    .footer-links-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }
    .footer-links-list a {
        min-height: 31px;
        justify-content: center;
        padding: 6px 7px;
        font-size: 12px;
        text-align: center;
    }
    .footer-social a {
        width: 30px;
        height: 30px;
    }
    .footer-contact-link {
        min-height: 31px;
        padding: 6px 8px;
        font-size: 12px;
    }
    .footer-bottom {
        align-items: center;
        flex-direction: column;
        gap: 6px;
        padding: 10px 0 12px;
        text-align: center;
        font-size: 12px;
    }
    .blog-index-hero,
    .blog-post-hero {
        padding: calc(var(--header-height) + 54px) 0 58px;
    }
    .blog-post-content section,
    .blog-cta,
    .blog-lead {
        padding: 18px;
        border-radius: 18px;
    }
    .legal-lead,
    .legal-content-panel section,
    .legal-contact-box {
        padding: 16px;
        border-radius: 16px;
    }
    .legal-contact-box {
        align-items: stretch;
        flex-direction: column;
    }
    .legal-contact-box strong {
        margin-inline-end: 0;
    }
    .faq-intro-card {
        padding: 18px;
        border-radius: 18px;
    }
    .faq-mini-stats strong {
        flex: 1 1 auto;
        text-align: center;
    }
    .faq-item summary {
        grid-template-columns: 36px 1fr 30px;
        gap: 9px;
        padding: 14px;
    }
    .faq-item summary span {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 12px;
    }
    .faq-item summary strong {
        font-size: 15px;
    }
    .faq-item summary i {
        width: 30px;
        height: 30px;
    }
    .faq-item p {
        padding: 0 14px 16px;
        font-size: 14px;
    }
    .faq-help-card {
        padding: 18px;
        border-radius: 18px;
    }
    .docs-hero-card {
        padding: 18px;
        border-radius: 18px;
    }
    .docs-quality-card {
        padding: 16px;
        border-radius: 16px;
    }
    .docs-checklist-grid {
        grid-template-columns: 1fr;
    }
    .docs-check-card,
    .docs-info-list section,
    .docs-send-card {
        padding: 16px;
        border-radius: 16px;
    }
    .docs-info-list section {
        grid-template-columns: 40px 1fr;
        gap: 10px;
    }
    .docs-info-list span {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 13px;
    }
    .docs-info-list h2,
    .docs-check-card h3 {
        font-size: 18px;
    }
    .blog-related a {
        grid-template-columns: 76px 1fr;
    }
    .blog-related img {
        width: 76px;
        height: 64px;
    }
    .tourism-offer-card {
        grid-template-rows: 260px 1fr;
    }
    .offer-card-copy h3 {
        min-height: 0;
        font-size: 20px;
    }
    .offer-card-copy {
        padding: 18px;
    }
    .offer-card-copy div {
        align-items: stretch;
        flex-direction: column;
    }
    .offer-card-copy strong {
        max-width: none;
    }
    .offer-live-mini {
        top: 12px;
        inset-inline: 12px;
    }
    .offer-live-mini span {
        min-height: 34px;
        padding: 7px 9px;
        font-size: 12px;
    }
    .offer-gallery-grid {
        grid-template-columns: 1fr;
    }
    .offer-gallery-grid.is-compact-gallery {
        grid-template-columns: 1fr;
    }
    .offer-gallery-item,
    .offer-gallery-item.is-featured {
        grid-column: auto;
        min-height: auto;
        aspect-ratio: 1 / .78;
        border-radius: 14px;
    }
    .offer-gallery-item::after {
        inset: 7px;
        border-radius: 10px;
    }
    .offer-gallery-meta {
        inset-inline: 13px;
        bottom: 12px;
    }
    .gallery-lightbox img {
        border-radius: 14px;
    }
    .gallery-lightbox-close {
        top: 14px;
        inset-inline-end: 14px;
    }
    .brand small { display: none; }
    .mobile-open {
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
        display: inline-grid;
        place-content: center;
        padding: 0;
        border-radius: 14px;
        border-color: rgba(23,107,54,.18);
        background: linear-gradient(180deg, #fff, #f6fbf5);
        box-shadow: 0 8px 22px rgba(22,36,26,.08);
    }
    .mobile-open span {
        width: 21px;
        height: 2px;
        margin: 3px 0;
        border-radius: 999px;
        background: var(--ink);
    }
    h1 { font-size: 36px; }
    .page-hero,
    .page-hero.compact {
        min-height: 280px;
        padding: 42px 0 38px;
    }
    .page-hero-premium {
        background-position: center;
    }
    .page-hero-content h1 {
        max-width: 96%;
        display: -webkit-box;
        overflow: hidden;
        font-size: clamp(30px, 9vw, 39px);
        line-height: 1.16;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .page-hero p {
        max-width: 94%;
        display: -webkit-box;
        overflow: hidden;
        font-size: 15px;
        line-height: 1.75;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .page-hero-meta {
        display: flex;
        flex-wrap: nowrap;
        gap: 6px;
        max-width: 100%;
        margin: 14px 0 16px;
        overflow: hidden;
    }
    .page-hero-meta span {
        min-height: 32px;
        max-width: 50%;
        gap: 5px;
        padding: 6px 8px;
        font-size: 12px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    .page-hero-meta span:nth-child(3) {
        display: none;
    }
    .page-hero .hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        max-width: 100%;
    }
    .page-hero .hero-actions .btn {
        min-height: 42px;
        padding: 9px 10px;
        font-size: 13px;
        line-height: 1.25;
    }
    .home-slider {
        min-height: auto;
    }
    .home-slide::before {
        background:
            linear-gradient(180deg, rgba(8,18,12,.9) 0%, rgba(12,44,25,.72) 48%, rgba(10,24,15,.86) 100%),
            var(--slide-image) center/cover no-repeat;
    }
    .home-slide-copy h1 {
        max-width: 94%;
        display: -webkit-box;
        overflow: hidden;
        font-size: clamp(29px, 8.6vw, 36px);
        line-height: 1.16;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .home-slide-copy p {
        max-width: 92%;
        display: -webkit-box;
        overflow: hidden;
        font-size: 15px;
        line-height: 1.75;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .home-slide-inner {
        width: min(100% - 24px, 1160px);
        padding-top: 28px;
        padding-bottom: 98px;
    }
    .home-slider-controls {
        inset: auto 0 26px;
        height: 42px;
        gap: 10px;
    }
    .slider-arrow { width: 40px; height: 40px; font-size: 14px; }
    .slider-dots button,
    .slider-dots .swiper-pagination-bullet { width: 30px; }
    .slider-dots button.is-active,
    .slider-dots .swiper-pagination-bullet-active { width: 46px; }
    .slider-dots { gap: 6px; }
    .slide-kicker {
        max-width: max-content;
        padding: 6px 10px;
        font-size: 12px;
    }
    .slide-benefits {
        display: flex;
        flex-wrap: nowrap;
        gap: 6px;
        max-width: 100%;
        margin: 14px 0 16px;
        overflow: hidden;
    }
    .slide-benefits span {
        min-height: 32px;
        max-width: 50%;
        gap: 5px;
        padding: 6px 8px;
        font-size: 12px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    .slide-benefits span:nth-child(3) {
        display: none;
    }
    .home-slider .hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        max-width: 100%;
    }
    .home-slider .hero-actions .btn {
        min-height: 42px;
        padding: 9px 10px;
        font-size: 13px;
        line-height: 1.25;
    }
    .home-slider .hero-actions .btn i {
        font-size: 12px;
    }
    .slide-ad-meta { display: none; }
    .quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 8px;
        border-radius: 8px;
    }
    .home-quick-strip { margin-top: -8px; }
    .quick-stat,
    .quick-contact {
        min-height: 92px;
        align-items: flex-start;
        padding: 10px;
        overflow: hidden;
    }
    .quick-stat i,
    .quick-contact i {
        width: 26px;
        height: 26px;
        margin-bottom: 5px;
        font-size: 12px;
    }
    .quick-stat strong {
        font-size: 22px;
    }
    .quick-stat span {
        font-size: 12px;
        line-height: 1.35;
    }
    .quick-contact strong {
        font-size: 19px;
        line-height: 1.15;
    }
    .quick-contact span {
        font-size: 12px;
        line-height: 1.35;
    }
    .home-services-section .section-head {
        margin-bottom: 18px;
        text-align: right;
    }
    html[dir="ltr"] .home-services-section .section-head {
        text-align: left;
    }
    .home-services-section .section-head span {
        padding: 5px 10px;
        font-size: 12px;
    }
    .home-services-section .section-head h2 {
        max-width: 96%;
        font-size: clamp(25px, 7.4vw, 31px);
        line-height: 1.28;
    }
    .home-services-section .section-head p {
        display: -webkit-box;
        overflow: hidden;
        max-width: 96%;
        font-size: 14px;
        line-height: 1.75;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .showcase-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-inline: 0;
        padding: 0;
        overflow: visible;
    }
    .showcase-card {
        grid-template-rows: 230px 1fr;
        min-height: 0;
        box-shadow: 0 14px 34px rgba(22,36,26,.12);
    }
    .showcase-card div {
        padding: 14px;
    }
    .showcase-icon {
        inset-inline-end: 12px;
        bottom: 12px;
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    .showcase-card h3 {
        font-size: 20px;
    }
    .showcase-card p {
        display: -webkit-box;
        overflow: hidden;
        margin-bottom: 0;
        font-size: 13px;
        line-height: 1.7;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .showcase-card strong {
        min-height: 36px;
        padding: 7px 11px;
        font-size: 13px;
    }
    .home-visas {
        background:
            linear-gradient(135deg, rgba(52,168,83,.04) 0 25%, transparent 25% 50%, rgba(52,168,83,.035) 50% 75%, transparent 75%) 0 0 / 22px 22px,
            linear-gradient(180deg, #fff 0%, #f8fbf7 100%);
    }
    .home-visas .section-head {
        margin-bottom: 18px;
        text-align: right;
    }
    html[dir="ltr"] .home-visas .section-head {
        text-align: left;
    }
    .home-visas .section-head span {
        padding: 5px 10px;
        font-size: 12px;
    }
    .home-visas .section-head h2 {
        max-width: 96%;
        font-size: clamp(25px, 7.3vw, 30px);
        line-height: 1.28;
    }
    .home-visas .section-head p {
        display: -webkit-box;
        overflow: hidden;
        max-width: 96%;
        font-size: 14px;
        line-height: 1.75;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .visa-feature-grid {
        gap: 10px;
    }
    .visa-feature-card {
        min-height: auto;
        padding: 16px;
        box-shadow: 0 10px 24px rgba(22,36,26,.06);
    }
    .visa-feature-card::after {
        inset-inline-end: -54px;
        top: 12px;
        width: 112px;
        height: 112px;
        opacity: .75;
    }
    .visa-feature-tag {
        margin-bottom: 10px;
        padding: 5px 8px;
        gap: 5px;
        font-size: 11px;
    }
    .visa-feature-tag i {
        width: 21px;
        height: 21px;
        font-size: 10px;
    }
    .visa-feature-card h3 {
        max-width: 94%;
        margin-bottom: 8px;
        font-size: 21px;
        line-height: 1.32;
    }
    .visa-feature-card p {
        display: -webkit-box;
        overflow: hidden;
        margin-bottom: 16px;
        font-size: 13px;
        line-height: 1.75;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .visa-feature-card strong {
        min-height: 38px;
        padding: 7px 12px;
        font-size: 13px;
    }
    .section { padding: 54px 0; }
    .umrah-nights-group {
        grid-template-columns: 1fr;
    }
    .floating-social {
        width: 48px;
        height: 48px;
        left: 14px;
        bottom: 14px;
    }
    html[dir="ltr"] .floating-social {
        left: auto;
        right: 14px;
    }
    .floating-social-list a,
    .floating-social-toggle {
        width: 48px;
        height: 48px;
    }
    .floating-social-list i,
    .floating-social-toggle i {
        font-size: 20px;
    }
    .floating-social-lottie {
        width: 50px;
        height: 50px;
        clip-path: circle(17px at 50% 50%);
    }
    .floating-social.is-open .floating-social-list a:nth-child(1) { --social-x: 0; --social-y: -56px; }
    .floating-social.is-open .floating-social-list a:nth-child(2) { --social-x: 36px; --social-y: -50px; }
    .floating-social.is-open .floating-social-list a:nth-child(3) { --social-x: 62px; --social-y: -28px; }
    .floating-social.is-open .floating-social-list a:nth-child(4) { --social-x: 76px; --social-y: -58px; }
    .floating-social.is-open .floating-social-list a:nth-child(5) { --social-x: 42px; --social-y: -84px; }
    .floating-social.is-open .floating-social-list a:nth-child(6) { --social-x: 86px; --social-y: -92px; }
    html[dir="ltr"] .floating-social.is-open .floating-social-list a:nth-child(2) { --social-x: -34px; }
    html[dir="ltr"] .floating-social.is-open .floating-social-list a:nth-child(3) { --social-x: -60px; }
    html[dir="ltr"] .floating-social.is-open .floating-social-list a:nth-child(4) { --social-x: -72px; }
    html[dir="ltr"] .floating-social.is-open .floating-social-list a:nth-child(5) { --social-x: -56px; }
    html[dir="ltr"] .floating-social.is-open .floating-social-list a:nth-child(6) { --social-x: -88px; }
    .direct-actions, .hero-actions, .card-actions { display: grid; grid-template-columns: 1fr; }
}

/* Final home spacing and visual rhythm */
body:has(.home-slider) .section {
    padding-block: 58px;
}
body:has(.home-slider) .section-head {
    margin-bottom: 22px;
}
.home-services-section,
.tourism-offers-section,
.home-blog-section,
.google-reviews-section,
.travel-location-section,
.home-visas {
    isolation: isolate;
}
.home-services-section::after,
.tourism-offers-section::before,
.home-blog-section::before,
.google-reviews-section::before,
.travel-location-section::before,
.home-visas::after {
    content: "";
    position: absolute;
    inset: 22px 5vw auto;
    z-index: 0;
    height: 118px;
    pointer-events: none;
    opacity: .36;
    background:
        linear-gradient(115deg, transparent 0 16%, rgba(75,160,86,.22) 16.4% 16.8%, transparent 17.2% 100%),
        radial-gradient(circle at 22% 58%, rgba(75,160,86,.22) 0 3px, transparent 4px),
        radial-gradient(circle at 42% 46%, rgba(75,160,86,.18) 0 3px, transparent 4px),
        radial-gradient(circle at 66% 34%, rgba(75,160,86,.16) 0 3px, transparent 4px),
        radial-gradient(circle at 84% 26%, rgba(75,160,86,.13) 0 3px, transparent 4px);
    mask-image: linear-gradient(90deg, transparent, #000 16%, #000 82%, transparent);
    animation: homeRouteDrift 12s ease-in-out infinite alternate;
}
.home-services-section .shell,
.tourism-offers-section .shell,
.home-blog-section .shell,
.google-reviews-section .shell,
.travel-location-section .shell,
.home-visas .shell {
    position: relative;
    z-index: 1;
}
.home-services-section .section-head,
.tourism-offers-section .section-head,
.home-blog-section .section-head,
.home-visas .section-head {
    padding: 16px 18px;
    border: 1px solid rgba(33,74,47,.08);
    border-radius: 22px;
    background: rgba(255,255,255,.62);
    box-shadow: 0 18px 55px rgba(22,36,26,.05);
    backdrop-filter: blur(14px);
}
.showcase-grid::before,
.tourism-offers-grid::before,
.home-blog-grid::before {
    content: "";
    position: absolute;
    inset: -18px -22px;
    z-index: -1;
    border: 1px solid rgba(75,160,86,.08);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.78), rgba(245,250,246,.54)),
        repeating-linear-gradient(90deg, rgba(33,74,47,.045) 0 1px, transparent 1px 42px);
}
.showcase-grid,
.tourism-offers-grid,
.home-blog-grid {
    position: relative;
}
.showcase-card,
.tourism-offer-card,
.home-blog-card {
    animation: homeCardLift .7s ease both;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.showcase-card:hover,
.tourism-offer-card:hover,
.home-blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 58px rgba(22,36,26,.14);
    border-color: rgba(75,160,86,.22);
}
.showcase-card img,
.home-blog-card img,
.tourism-offer-media img {
    transition: transform .55s ease, filter .55s ease;
}
.showcase-card:hover img,
.home-blog-card:hover img,
.tourism-offer-card:hover .tourism-offer-media img {
    transform: scale(1.065);
    filter: saturate(1.08) contrast(1.03);
}
.google-reviews-section,
.travel-location-section {
    padding-block: 46px;
}
@keyframes homeRouteDrift {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-22px, 8px, 0); }
}
@keyframes homeCardLift {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 991px) {
    body:has(.home-slider) .section {
        padding-block: 44px;
    }
    .showcase-grid::before,
    .tourism-offers-grid::before,
    .home-blog-grid::before {
        inset: -12px;
        border-radius: 22px;
    }
}
@media (max-width: 560px) {
    body:has(.home-slider) .section,
    .google-reviews-section,
    .travel-location-section {
        padding-block: 34px;
    }
    body:has(.home-slider) .section-head {
        margin-bottom: 16px;
    }
    .home-services-section::after,
    .tourism-offers-section::before,
    .home-blog-section::before,
    .google-reviews-section::before,
    .travel-location-section::before,
    .home-visas::after {
        height: 90px;
        opacity: .24;
    }
    .home-services-section .section-head,
    .tourism-offers-section .section-head,
    .home-blog-section .section-head,
    .home-visas .section-head {
        padding: 12px;
        border-radius: 18px;
    }
}

.blog-post {
    background:
        linear-gradient(135deg, rgba(75,160,86,.08), transparent 32%),
        linear-gradient(180deg, #fff 0%, #f7fbf8 48%, #fff 100%);
}
.blog-post .blog-post-hero {
    min-height: 520px;
    padding: calc(var(--header-height) + 48px) 0 120px;
    background:
        linear-gradient(90deg, rgba(9,25,18,.82), rgba(9,25,18,.38) 52%, rgba(9,25,18,.14)),
        var(--blog-hero, url("../rehlty/media/hero-world.jpg")) center / cover;
}
.blog-hero-shell {
    display: grid;
    gap: 24px;
    align-content: end;
    min-height: 390px;
}
.blog-hero-panel {
    max-width: 820px;
}
.blog-post .blog-post-hero h1 {
    margin: 12px 0 14px;
    max-width: 860px;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1.16;
}
.blog-post .blog-post-hero p {
    max-width: 700px;
    font-size: 17px;
}
.blog-article-section {
    margin-top: -86px;
    padding-top: 0;
}
.blog-post .blog-post-layout {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 24px;
}
.blog-main-card {
    overflow: hidden;
    border: 1px solid rgba(33,74,47,.10);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(20,35,25,.12);
}
.blog-feature-image {
    position: relative;
    aspect-ratio: 16 / 7;
    min-height: 330px;
    margin: 0;
    overflow: hidden;
    background: #edf4ee;
}
.blog-feature-image::after {
    content: "";
    position: absolute;
    inset: auto 24px 0;
    height: 1px;
    background: rgba(255,255,255,.5);
}
.blog-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
}
.blog-article-body {
    display: grid;
    gap: 22px;
    padding: 30px;
}
.blog-post .blog-lead {
    position: relative;
    margin: 0;
    padding: 0 20px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--ink);
    font-size: 21px;
    font-weight: 900;
    line-height: 2;
}
.blog-post .blog-lead::before {
    content: "";
    position: absolute;
    top: 9px;
    right: 0;
    width: 5px;
    height: calc(100% - 18px);
    border-radius: 999px;
    background: var(--green);
}
.blog-section-list {
    display: grid;
    gap: 14px;
}
.blog-content-section {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 22px;
    border: 1px solid rgba(33,74,47,.10);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(75,160,86,.055), #fff 42%);
}
.blog-content-section > span {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #edf7ef;
    color: var(--green-dark);
    font-weight: 1000;
}
.blog-content-section h2 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 26px;
    line-height: 1.35;
}
.blog-content-section p {
    margin: 0;
    color: #5f6b63;
    line-height: 2;
}
.blog-post .blog-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(75,160,86,.20);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(75,160,86,.16), transparent 52%),
        #f8fcf9;
    box-shadow: none;
}
.blog-post .blog-cta strong {
    display: block;
    margin-bottom: 5px;
    color: var(--ink);
    font-size: 22px;
    font-weight: 1000;
}
.blog-post .blog-cta p {
    margin: 0;
    color: #5f6b63;
    line-height: 1.8;
}
.blog-post .blog-related {
    position: sticky;
    top: calc(var(--header-height) + 18px);
    padding: 16px;
    border: 1px solid rgba(33,74,47,.10);
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 45px rgba(20,35,25,.10);
    backdrop-filter: blur(14px);
}
.blog-related-head {
    display: grid;
    gap: 3px;
    margin-bottom: 4px;
}
.blog-related-head span {
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 1000;
}
.blog-related-head h3 {
    margin: 0;
    color: var(--ink);
    font-size: 21px;
}
.blog-post .blog-related a:not(.blog-side-cta) {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 18px;
    color: var(--ink);
    transition: background .2s ease, transform .2s ease;
}
.blog-post .blog-related a:not(.blog-side-cta):hover {
    background: #f3f8f4;
    transform: translateY(-2px);
}
.blog-post .blog-related img {
    width: 82px;
    height: 70px;
    border-radius: 14px;
    object-fit: cover;
}
.blog-post .blog-related span {
    color: var(--green);
    font-size: 12px;
    font-weight: 1000;
}
.blog-post .blog-related strong {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.55;
}
.blog-side-cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px !important;
    min-height: 42px;
    margin-top: 6px;
    padding: 10px 14px !important;
    border-radius: 999px !important;
    background: var(--green);
    color: #fff !important;
    font-weight: 1000;
}

@media (max-width: 991px) {
    .blog-post .blog-post-hero {
        min-height: 440px;
        padding: calc(var(--header-height) + 36px) 0 96px;
    }
    .blog-hero-shell {
        min-height: 320px;
    }
    .blog-post .blog-post-layout {
        grid-template-columns: 1fr;
    }
    .blog-post .blog-related {
        position: static;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .blog-related-head,
    .blog-side-cta {
        grid-column: 1 / -1;
    }
    .blog-post .blog-related a:not(.blog-side-cta) {
        grid-template-columns: 1fr;
    }
    .blog-post .blog-related img {
        width: 100%;
        height: 128px;
    }
}

@media (max-width: 560px) {
    .blog-post .blog-post-hero {
        min-height: 390px;
        padding: calc(var(--header-height) + 26px) 0 76px;
    }
    .blog-post .blog-post-hero h1 {
        font-size: 31px;
    }
    .blog-post .blog-post-hero p {
        font-size: 15px;
        line-height: 1.8;
    }
    .blog-article-section {
        margin-top: -52px;
    }
    .blog-main-card {
        border-radius: 20px;
    }
    .blog-feature-image {
        aspect-ratio: 4 / 3;
        min-height: 240px;
    }
    .blog-article-body {
        gap: 18px;
        padding: 18px;
    }
    .blog-post .blog-lead {
        padding-inline-start: 0;
        padding-inline-end: 16px;
        font-size: 17px;
        line-height: 1.9;
    }
    .blog-content-section {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
        border-radius: 18px;
    }
    .blog-content-section > span {
        width: 44px;
        height: 44px;
        border-radius: 13px;
    }
    .blog-content-section h2 {
        font-size: 22px;
    }
    .blog-content-section p {
        font-size: 14px;
        line-height: 1.9;
    }
    .blog-post .blog-cta {
        align-items: stretch;
        flex-direction: column;
        padding: 16px;
        border-radius: 18px;
    }
    .blog-post .blog-cta strong {
        font-size: 19px;
    }
    .blog-post .blog-related {
        grid-template-columns: 1fr;
        padding: 12px;
        border-radius: 18px;
    }
    .blog-post .blog-related a:not(.blog-side-cta) {
        grid-template-columns: 76px 1fr;
    }
    .blog-post .blog-related img {
        width: 76px;
        height: 64px;
    }
}
/* Umrah offers */
.umrah-page-hero {
    position: relative;
    overflow: hidden;
    padding: 34px 0 28px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(11, 28, 15, .90), rgba(24, 70, 35, .55)),
        var(--umrah-hero-image, url("media/hero-umrah.jpg")) center / cover;
}
.umrah-page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(0deg, rgba(248, 252, 248, 1), transparent);
    pointer-events: none;
}
.umrah-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: 22px;
    align-items: center;
}
.umrah-hero-inner.offers-only {
    grid-template-columns: minmax(0, 860px);
    justify-content: center;
    min-height: 360px;
    text-align: center;
}
.umrah-hero-inner.offers-only .umrah-hero-copy {
    margin-inline: auto;
}
.umrah-hero-inner.offers-only .umrah-hero-copy p {
    margin-inline: auto;
}
.umrah-hero-inner.offers-only .umrah-hero-points {
    justify-content: center;
}
.umrah-hero-copy {
    max-width: 710px;
}
.umrah-hero-copy > span,
.section-mini-kicker {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    padding: 8px 14px;
    border-radius: 999px;
    color: #214d2a;
    background: rgba(255, 255, 255, .88);
    font-weight: 1000;
}
.umrah-hero-copy h1 {
    margin: 16px 0 10px;
    font-size: clamp(38px, 6vw, 74px);
    line-height: 1.12;
}
.umrah-hero-copy p {
    margin: 0;
    max-width: 620px;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.9;
}
.umrah-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}
.umrah-hero-points small {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    font-weight: 900;
}
.umrah-hero-form .lead-card {
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 28px 70px rgba(5, 18, 9, .26);
}
.umrah-hero-form .lead-card textarea {
    min-height: 72px;
}
.umrah-offers-section {
    padding-top: 42px;
}
.umrah-offers-grid,
.umrah-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.umrah-offer-card {
    overflow: hidden;
    display: grid;
    border: 1px solid rgba(23, 63, 37, .10);
    border-radius: 24px;
    color: inherit;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 22px 55px rgba(16, 32, 20, .10);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.umrah-offer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(93, 174, 84, .34);
    box-shadow: 0 30px 70px rgba(16, 32, 20, .16);
}
.umrah-offer-media {
    position: relative;
    overflow: hidden;
    margin: 0;
    aspect-ratio: 1.35 / 1;
}
.umrah-offer-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}
.umrah-offer-card:hover .umrah-offer-media img {
    transform: scale(1.04);
}
.umrah-offer-badge {
    position: absolute;
    inset-inline-start: 16px;
    bottom: 16px;
    padding: 8px 13px;
    border-radius: 999px;
    color: #214d2a;
    background: rgba(255, 255, 255, .93);
    font-weight: 1000;
    box-shadow: 0 12px 24px rgba(8, 24, 13, .14);
}
.umrah-offer-copy {
    display: grid;
    gap: 10px;
    padding: 18px 18px 16px;
}
.umrah-offer-copy small {
    color: #5dae54;
    font-weight: 1000;
}
.umrah-offer-copy h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.35;
}
.umrah-offer-copy p {
    margin: 0;
    color: #6c766f;
    line-height: 1.85;
}
.umrah-nights-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.umrah-nights-pills span {
    padding: 7px 10px;
    border-radius: 999px;
    color: #214d2a;
    background: #eef6ef;
    font-size: 13px;
    font-weight: 900;
}
.umrah-offer-copy strong {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid rgba(23, 63, 37, .08);
}
.umrah-offer-copy b {
    min-width: 0;
    color: #17251a;
    font-size: 17px;
    line-height: 1.55;
}
.umrah-offer-copy em {
    min-width: 126px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 16px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(255,255,255,.18), transparent 38%),
        linear-gradient(135deg, #74b85e, #3f8e47);
    box-shadow: 0 14px 26px rgba(63, 142, 71, .24);
    font-style: normal;
    font-weight: 1000;
    line-height: 1;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease;
}
.umrah-offer-card:hover .umrah-offer-copy em {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(63, 142, 71, .32);
}
.umrah-detail-hero {
    min-height: 520px;
    display: grid;
    align-items: end;
    padding: 34px 0 46px;
    color: #fff;
    background-position: center;
    background-size: cover;
}
.detail-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 80px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    font-weight: 1000;
}
.umrah-detail-copy {
    max-width: 820px;
}
.umrah-detail-copy > span {
    color: #bde2bd;
    font-weight: 1000;
}
.umrah-detail-copy h1 {
    margin: 12px 0;
    font-size: clamp(36px, 6vw, 68px);
    line-height: 1.15;
}
.umrah-detail-copy p {
    margin: 0;
    max-width: 680px;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.9;
}
.umrah-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
}
.umrah-detail-actions strong {
    padding: 12px 16px;
    border-radius: 999px;
    color: #214d2a;
    background: rgba(255, 255, 255, .92);
}
.umrah-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 20px;
    align-items: start;
}
.umrah-detail-main,
.umrah-info-columns {
    display: grid;
    gap: 16px;
}
.umrah-info-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.umrah-detail-card,
.umrah-list-panel,
.umrah-side-panel {
    border: 1px solid rgba(23, 63, 37, .10);
    border-radius: 24px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 48px rgba(16, 32, 20, .09);
}
.umrah-detail-card,
.umrah-list-panel {
    padding: 22px;
}
.umrah-detail-card h2,
.umrah-list-panel h2 {
    margin: 10px 0 10px;
    font-size: 28px;
    line-height: 1.35;
}
.umrah-detail-card p,
.umrah-list-panel li,
.umrah-hotels-box p {
    color: #66736a;
    line-height: 1.9;
}
.umrah-list-panel ul,
.umrah-list-panel ol {
    margin: 0;
    padding-inline-start: 22px;
}
.umrah-list-panel li + li {
    margin-top: 8px;
}
.umrah-side-panel {
    position: sticky;
    top: 98px;
    overflow: hidden;
    display: grid;
    gap: 14px;
    padding: 14px;
}
.umrah-side-panel > img {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    object-fit: cover;
    border-radius: 18px;
}
.umrah-side-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
.umrah-side-grid span {
    min-width: 0;
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 16px;
    background: #f3f8f3;
}
.umrah-side-grid i {
    color: #5dae54;
}
.umrah-side-grid b {
    color: #17251a;
}
.umrah-side-grid small {
    color: #6c766f;
    font-weight: 900;
}
.umrah-hotels-box {
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
    background: #fff;
}
.umrah-hotels-box p {
    display: grid;
    gap: 3px;
    margin: 0;
}
.umrah-hotels-box strong {
    color: #214d2a;
}
.umrah-offer-card.compact .umrah-offer-media {
    aspect-ratio: 1.8 / 1;
}
@media (max-width: 980px) {
    .umrah-hero-inner,
    .umrah-detail-layout {
        grid-template-columns: 1fr;
    }
    .umrah-side-panel {
        position: static;
    }
    .saudi-visa-request {
        grid-template-columns: 1fr;
    }
    .umrah-offers-grid,
    .umrah-related-grid,
    .umrah-info-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .umrah-page-hero {
        padding-top: 22px;
    }
    .umrah-offers-grid,
    .umrah-related-grid,
    .umrah-info-columns,
    .umrah-side-grid {
        grid-template-columns: 1fr;
    }
    .umrah-hero-copy h1,
    .umrah-detail-copy h1 {
        font-size: 36px;
    }
    .umrah-offer-copy strong,
    .umrah-detail-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .umrah-offer-copy strong {
        grid-template-columns: 1fr;
    }
    .umrah-offer-copy em,
    .umrah-detail-actions .btn,
    .umrah-detail-actions strong {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* UAE experiences */
.uae-experience-hero {
    position: relative;
    overflow: hidden;
    padding: 58px 0 48px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(8, 22, 12, .90), rgba(30, 88, 45, .50)),
        var(--uae-hero-image, url("media/UAE.jpg")) center / cover;
}
.uae-experience-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 110px;
    background: linear-gradient(0deg, #f8fcf8, transparent);
}
.uae-experience-hero-inner {
    position: relative;
    z-index: 1;
    min-height: 340px;
    display: grid;
    place-items: center;
    text-align: center;
}
.uae-experience-hero-inner > div {
    width: min(860px, 100%);
}
.uae-experience-hero span,
.uae-experience-detail-copy > span {
    display: inline-flex;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    font-weight: 1000;
}
.uae-experience-hero h1,
.uae-experience-detail-copy h1 {
    margin: 14px 0 10px;
    font-size: clamp(38px, 6vw, 74px);
    line-height: 1.12;
}
.uae-experience-hero p,
.uae-experience-detail-copy p {
    margin: 0 auto;
    max-width: 660px;
    color: rgba(255,255,255,.84);
    font-size: 18px;
    line-height: 1.9;
}
.uae-experience-section {
    padding-top: 36px;
}
.uae-experience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.uae-experience-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(250px, .92fr) minmax(0, 1fr);
    min-height: 320px;
    border: 1px solid rgba(23,63,37,.10);
    border-radius: 26px;
    color: inherit;
    background: rgba(255,255,255,.94);
    box-shadow: 0 24px 64px rgba(16,32,20,.11);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.uae-experience-card:hover {
    transform: translateY(-5px);
    border-color: rgba(93,174,84,.34);
    box-shadow: 0 32px 80px rgba(16,32,20,.17);
}
.uae-experience-card figure {
    position: relative;
    margin: 0;
    overflow: hidden;
}
.uae-experience-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}
.uae-experience-card:hover img {
    transform: scale(1.04);
}
.uae-experience-card figure span {
    position: absolute;
    inset-inline-start: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #214d2a;
    background: rgba(255,255,255,.92);
    font-weight: 1000;
}
.uae-experience-card > div {
    display: grid;
    gap: 10px;
    align-content: center;
    padding: 24px;
}
.uae-experience-card small {
    color: #5dae54;
    font-weight: 1000;
}
.uae-experience-card h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.25;
}
.uae-experience-card p {
    margin: 0;
    color: #66736a;
    line-height: 1.85;
}
.uae-experience-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.uae-experience-meta span,
.uae-experience-meta strong {
    padding: 8px 11px;
    border-radius: 999px;
    color: #214d2a;
    background: #eef6ef;
    font-weight: 1000;
}
.uae-experience-card em {
    width: max-content;
    min-width: 136px;
    display: inline-flex;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, #74b85e, #3f8e47);
    box-shadow: 0 14px 26px rgba(63,142,71,.24);
    font-style: normal;
    font-weight: 1000;
    white-space: nowrap;
}
.uae-experience-detail-hero {
    min-height: 540px;
    display: grid;
    align-items: end;
    padding: 34px 0 50px;
    color: #fff;
    background-position: center;
    background-size: cover;
}
.uae-experience-detail-copy {
    max-width: 820px;
}
.uae-experience-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 20px;
    align-items: start;
}
@media (max-width: 1100px) {
    .uae-experience-grid,
    .uae-experience-card,
    .uae-experience-detail-layout {
        grid-template-columns: 1fr;
    }
    .uae-experience-card figure {
        aspect-ratio: 1.8 / 1;
    }
}
@media (max-width: 640px) {
    .uae-experience-hero h1,
    .uae-experience-detail-copy h1 {
        font-size: 36px;
    }
    .uae-experience-card > div {
        padding: 18px;
    }
    .uae-experience-card em {
        width: 100%;
    }
}

/* Cruise offers */
.cruise-hero {
    position: relative;
    overflow: hidden;
    padding: 58px 0 48px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(5, 24, 27, .88), rgba(30, 91, 86, .45)),
        var(--cruise-hero-image, url("../images/banner/bg-slide-04.jpg")) center / cover;
}
.destination-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 56px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(10, 30, 17, .92), rgba(55, 119, 67, .52)),
        var(--destination-hero-image, url("media/service-destinations.jpg")) center / cover;
}
.destination-hero::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 86px;
    background: linear-gradient(180deg, transparent, #f7fbf7);
}
.destination-hero .cruise-hero-inner {
    position: relative;
    z-index: 1;
}
.honeymoon-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 56px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(35, 18, 22, .90), rgba(114, 82, 58, .45)),
        var(--honeymoon-hero-image, url("media/blog/honeymoon-maldives.jpg")) center / cover;
}
.honeymoon-hero::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 86px;
    background: linear-gradient(180deg, transparent, #f7fbf7);
}
.honeymoon-hero .cruise-hero-inner {
    position: relative;
    z-index: 1;
}
.cruise-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 110px;
    background: linear-gradient(0deg, #f8fcf8, transparent);
}
.cruise-hero-inner {
    position: relative;
    z-index: 1;
    min-height: 340px;
    display: grid;
    place-items: center;
    text-align: center;
}
.cruise-hero-inner span {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    font-weight: 1000;
}
.cruise-hero-inner h1 {
    margin: 14px 0 10px;
    font-size: clamp(38px, 6vw, 74px);
    line-height: 1.12;
}
.cruise-hero-inner p {
    margin: 0 auto;
    max-width: 650px;
    color: rgba(255,255,255,.84);
    font-size: 18px;
    line-height: 1.9;
}
.cruise-offers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.cruise-offer-card {
    overflow: hidden;
    display: grid;
    border: 1px solid rgba(23,63,37,.10);
    border-radius: 28px;
    color: inherit;
    background: rgba(255,255,255,.94);
    box-shadow: 0 24px 64px rgba(16,32,20,.11);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.cruise-offer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(93,174,84,.34);
    box-shadow: 0 32px 80px rgba(16,32,20,.17);
}
.cruise-offer-card figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    aspect-ratio: 1.75 / 1;
}
.cruise-offer-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}
.cruise-offer-card:hover img {
    transform: scale(1.04);
}
.cruise-offer-card figure span {
    position: absolute;
    inset-inline-start: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    color: #173f25;
    background: rgba(255,255,255,.92);
    font-weight: 1000;
}
.cruise-offer-card > div {
    display: grid;
    gap: 10px;
    padding: 22px;
}
.cruise-offer-card small {
    color: #5dae54;
    font-weight: 1000;
}
.cruise-offer-card h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.25;
}
.cruise-offer-card p {
    margin: 0;
    color: #66736a;
    line-height: 1.85;
}
.cruise-offer-card em {
    width: max-content;
    min-width: 150px;
    display: inline-flex;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, #74b85e, #3f8e47);
    box-shadow: 0 14px 26px rgba(63,142,71,.24);
    font-style: normal;
    font-weight: 1000;
    white-space: nowrap;
}
.cruise-detail-hero {
    min-height: 540px;
    display: grid;
    align-items: end;
    padding: 34px 0 50px;
    color: #fff;
    background-position: center;
    background-size: cover;
}
@media (max-width: 900px) {
    .cruise-offers-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .cruise-hero-inner h1 {
        font-size: 36px;
    }
    .cruise-offer-card > div {
        padding: 18px;
    }
    .cruise-offer-card em {
        width: 100%;
    }
}
