/* ==========================================================================
   UAE Home — Hero section
   Loaded only on UAE pages via the @push('head') stack in
   resources/views/regions/uae/home/index.blade.php
   ========================================================================== */

/* Typography: Avenir (see app.css for the self-hosting note). */

:root {
    --color-gold: #9C00DD;
    --color-teal: #0053B7;
    --color-white: #ffffff;
    --color-text: #1a1a1a;
    --color-lime: #d4ed47;
    --uae-hero-green: #0053B7;
    --uae-emerald: #0053B7;
    --uae-blue-gradient: linear-gradient(180deg, #F8FCFD 0%, #BCE5F0 50%, #45BEE8 100%);

    --font-base: 'Avenir Next', 'Avenir', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Avenir Next', 'Avenir', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

    --bs-body-font-family: var(--font-base);
    --bs-body-color: var(--color-text);
    --bs-body-bg: var(--color-white);
    --bs-primary: #9C00DD;
    --bs-primary-rgb: 156, 0, 221;
    --bs-link-color: #9C00DD;
    --bs-link-color-rgb: 156, 0, 221;
    --bs-link-hover-color: #9C00DD;
    --bs-link-hover-color-rgb: 156, 0, 221;
}

.uae-hero {
    position: relative;
    width: 100%;
    min-height: 643px;
    height: 90vh;
    max-height: 760px;
    color: var(--color-white);
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
}

.uae-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.uae-hero__overlay {
    display: none;
}

/* ---------- Carousel arrows ---------- */
.uae-hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #0053B7;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.uae-hero__nav:hover,
.uae-hero__nav:focus {
    background: var(--uae-hero-green);
    color: var(--color-white);
}

.uae-hero__nav--prev {
    left: 18px;
}

.uae-hero__nav--next {
    right: 18px;
}

/* ---------- Inner layout ---------- */
.uae-hero__inner {
    position: relative;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 56px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ---------- Left: headline + lead + actions ---------- */
.uae-hero__content {
    max-width: 700px;
}

.uae-hero__title {
    font-family: var(--font-base);
    font-weight: 500;
    font-size: clamp(48px, 6.4vw, 72px);
    /* line-height: 0.96; */
    letter-spacing: -0.025em;
    color: #0053B7;
    margin: 0 0 26px;
}

.uae-hero__lead {
    font-family: var(--font-base);
    font-size: 17px;
    line-height: 1.6;
    color: #0053B7;
    margin: 0 0 34px;
    font-weight: 400;
}

.uae-hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.uae-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    border-radius: 32px;
    font-family: var(--font-base);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.uae-hero__btn--solid {
    background: var(--uae-hero-green);
    color: var(--color-white);
    border: 1px solid var(--uae-hero-green);
}

.uae-hero__btn--solid:hover,
.uae-hero__btn--solid:focus {
    background: #003E8A;
    border-color: #003E8A;
    color: var(--color-white);
}

.uae-hero__btn--ghost {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.uae-hero__btn--ghost:hover,
.uae-hero__btn--ghost:focus {
    background: rgba(255, 255, 255, 0.10);
    border-color: var(--color-white);
    color: var(--color-white);
}

/* ---------- Bottom-right: stat cards ---------- */
.uae-hero__cards {
    position: absolute;
    right: 56px;
    bottom: 40px;
    display: flex;
    gap: 22px;
    z-index: 5;
}

.uae-hcard {
    width: 300px;
    min-height: 152px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--uae-blue-gradient);
    border-radius: 10px;
    padding: 24px 26px;
    color: #0053B7;
}

.uae-hcard__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.uae-hcard__label {
    font-family: var(--font-base);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(0, 83, 183, 0.78);
}

.uae-hcard__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0053B7;
    flex-shrink: 0;
}

.uae-hcard__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.uae-hcard__stat {
    font-family: var(--font-base);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #0053B7;
}

.uae-hcard__desc {
    font-family: var(--font-base);
    font-size: 13px;
    line-height: 1.4;
    color: rgba(0, 83, 183, 0.82);
    max-width: 130px;
    text-align: right;
}

.uae-hcard__play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(0, 83, 183, 0.45);
    color: #0053B7;
    flex-shrink: 0;
}

/* keep the about stat-number override that previously lived here */
.uae-about__cells .uae-stat:nth-child(3) .uae-stat__number {
    font-size: 2.25rem;
    letter-spacing: -0.02em;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .uae-hero {
        height: auto;
        max-height: none;
        min-height: 0;
        padding-bottom: 40px;
        color: #0a1647;
        background:
            radial-gradient(120% 85% at 8% 92%, #ffffff 0%, rgba(255, 255, 255, 0) 46%),
            linear-gradient(120deg, #d6fbff 0%, #7ef0fb 30%, #25e3f6 62%, #00d0ec 100%);
    }

    /* Mobile: hide the hero video and dark overlay, show the light background instead */
    .uae-hero__image,
    .uae-hero__overlay {
        display: none;
    }

    .uae-hero__title {
        color: #0053B7;
        text-shadow: none;
    }

    .uae-hero__lead {
        color: #0053B7;
        text-shadow: none;
    }

    .uae-hero__inner {
        padding: 120px 24px 36px;
        justify-content: flex-start;
    }

    .uae-hero__cards {
        position: static;
        margin-top: 44px;
        right: auto;
        bottom: auto;
        flex-wrap: wrap;
    }

    .uae-hcard {
        flex: 1 1 260px;
    }

    .uae-hero__nav {
        display: none;
    }

    .uae-about {
        padding: 120px 0 64px;
    }
}

@media (max-width: 575.98px) {
    .uae-hero__inner {
        padding: 100px 18px 28px;
    }

    .uae-hero__title {
        font-size: clamp(42px, 13vw, 60px);
    }

    .uae-hero__lead {
        font-size: 15px;
    }

    .uae-hero__lead br {
        display: none;
    }

    .uae-hero__actions {
        gap: 12px;
    }

    .uae-hero__btn {
        flex: 1 1 auto;
    }

    .uae-hcard {
        width: 100%;
        flex: 1 1 100%;
    }
}

/* ==========================================================================
   UAE Home — Trusted by (logo strip)
   ========================================================================== */
.uae-trusted {
    padding: 64px 0;
    background: var(--color-white);
}

.uae-trusted__panel {
    background: #e9eef1;
    border-radius: 26px;
    padding: 64px 48px 60px;
    text-align: center;
}

.uae-trusted__title {
    font-family: var(--font-base);
    font-weight: 700;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: #16284a;
    margin: 0 0 18px;
}

.uae-trusted__text {
    font-family: var(--font-base);
    font-size: 14px;
    line-height: 1.6;
    color: #5d6b7a;
    max-width: 660px;
    margin: 0 auto;
}

.uae-trusted__logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px 36px;
    margin-top: 44px;
}

.uae-trusted__logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-base);
    font-size: 18px;
    font-weight: 600;
    color: #5a6776;
    flex: 1 1 auto;
    justify-content: center;
}

.uae-trusted__logo svg {
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .uae-trusted__panel {
        padding: 48px 28px 44px;
    }

    .uae-trusted__logos {
        gap: 24px 28px;
    }

    .uae-trusted__logo {
        flex: 1 1 40%;
    }
}

@media (max-width: 575.98px) {
    .uae-trusted {
        padding: 40px 0;
    }

    .uae-trusted__panel {
        padding: 40px 20px 36px;
        border-radius: 20px;
    }

    .uae-trusted__text br {
        display: none;
    }

    .uae-trusted__logo {
        flex: 1 1 100%;
    }
}

/* ==========================================================================
   UAE Home — Guided by Expertise (advantage cards)
   ========================================================================== */
.uae-expertise {
    padding: 96px 0;
    background: var(--color-white);
}

.uae-expertise__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 56px;
}

.uae-expertise__tag {
    display: inline-block;
    padding: 7px 18px;
    border: 1px solid #d7dcd9;
    border-radius: 22px;
    font-family: var(--font-base);
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 22px;
}

.uae-expertise__title {
    font-family: var(--font-base);
    font-weight: 700;
    font-size: clamp(32px, 3.9vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #0053B7;
    margin: 0;
}

.uae-expertise__head-right {
    flex-shrink: 0;
    max-width: 360px;
    padding-top: 50px;
}

.uae-expertise__lead {
    font-family: var(--font-base);
    font-size: 15px;
    line-height: 1.65;
    color: #5d6b7a;
    margin: 0;
}

/* ---------- Cards ---------- */
.uae-xcard {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: 1px solid #e6e8ea;
    border-radius: 16px;
    padding: 30px 28px;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.uae-xcard:hover {
    transform: translateY(-4px);
    border-color: #d6dbd8;
    box-shadow: 0 22px 44px rgba(0, 83, 183, 0.10);
}

.uae-xcard__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #0053B7;
    margin-bottom: 26px;
}

.uae-xcard__title {
    font-family: var(--font-base);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: -0.01em;
    color: #0053B7;
    margin: 0 0 14px;
}

.uae-xcard__desc {
    font-family: var(--font-base);
    font-size: 14px;
    line-height: 1.6;
    color: #5d6b7a;
    margin: 0 0 26px;
}

.uae-xcard__panel {
    margin-top: auto;
    border-radius: 12px;
    padding: 24px 22px;
    background:#fffcf2;
}

.uae-xcard__list {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}

.uae-xcard__item {
    position: relative;
    padding-left: 20px;
    font-family: var(--font-base);
    font-size: 14px;
    line-height: 1.4;
    color: #4a5560;
    margin-bottom: 11px;
}

.uae-xcard__item:last-child {
    margin-bottom: 0;
}

.uae-xcard__item::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 6px;
    width: 7px;
    height: 7px;
    background: #0053B7;
    transform: rotate(45deg);
    border-radius: 1px;
}

.uae-xcard__more {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    padding: 11px 24px;
    background: var(--color-white);
    border-radius: 26px;
    font-family: var(--font-base);
    font-size: 14px;
    font-weight: 600;
    color: #0053B7;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 83, 183, 0.10);
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.uae-xcard__more:hover,
.uae-xcard__more:focus {
    background: var(--uae-hero-green);
    color: var(--color-white);
    box-shadow: 0 10px 24px rgba(0, 83, 183, 0.22);
}

@media (max-width: 991.98px) {
    .uae-expertise {
        padding: 72px 0;
    }

    .uae-expertise__head {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 40px;
    }

    .uae-expertise__head-right {
        padding-top: 0;
        max-width: 520px;
    }
}

@media (max-width: 575.98px) {
    .uae-expertise {
        padding: 56px 0;
    }
}

/* ==========================================================================
   UAE Home — Dedicated to Excellence (CTA banner)
   ========================================================================== */
.uae-cta {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: flex-end;
    background: #0a1647;
    overflow: hidden;
    isolation: isolate;
}

.uae-cta__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: -2;
}

.uae-cta__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(0, 83, 183, 0.90) 0%, rgba(0, 83, 183, 0.60) 46%, rgba(156, 0, 221, 0.74) 100%),
        linear-gradient(180deg, rgba(7, 16, 60, 0) 38%, rgba(7, 16, 60, 0.55) 100%);
}

.uae-cta .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.uae-cta__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    padding: 120px 0 56px;
}

.uae-cta__left {
    max-width: 640px;
}

.uae-cta__tag {
    display: inline-block;
    padding: 7px 18px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 22px;
    font-family: var(--font-base);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 24px;
}

.uae-cta__title {
    font-family: var(--font-base);
    font-weight: 800;
    font-size: clamp(36px, 4.6vw, 66px);
    line-height: 1.0;
    letter-spacing: -0.025em;
    color: var(--color-white);
    margin: 0 0 22px;
}

.uae-cta__text {
    font-family: var(--font-base);
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    max-width: 580px;
}

.uae-cta__right {
    flex-shrink: 0;
    max-width: 320px;
}

.uae-cta__stat {
    font-family: var(--font-base);
    font-size: clamp(20px, 1.55vw, 24px);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-white);
    margin: 0 0 26px;
}

.uae-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    background: var(--color-white);
    border-radius: 32px;
    font-family: var(--font-base);
    font-size: 15px;
    font-weight: 600;
    color: #0053B7;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.uae-cta__btn:hover,
.uae-cta__btn:focus {
    background: var(--uae-hero-green);
    color: var(--color-white);
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .uae-cta {
        min-height: 0;
    }

    .uae-cta__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        padding: 180px 0 48px;
    }

    .uae-cta__right {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .uae-cta__inner {
        padding: 150px 0 40px;
    }

    .uae-cta__btn {
        width: 100%;
    }
}

/* ==========================================================================
   UAE Home — Redefining Accounting (about + stat cards)
   ========================================================================== */
.uae-stats {
    padding: 96px 0;
    background: var(--color-white);
}

.uae-stats__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 56px;
    margin-bottom: 52px;
}

.uae-stats__head-left {
    flex: 1 1 auto;
}

.uae-stats__tag {
    display: inline-block;
    padding: 7px 18px;
    border: 1px solid #d7dcd9;
    border-radius: 22px;
    font-family: var(--font-base);
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.uae-stats__title {
    font-family: var(--font-base);
    font-weight: 700;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #233340;
    margin: 0;
    max-width: 720px;
}

.uae-stats__head-right {
    flex-shrink: 0;
    max-width: 400px;
    padding-top: 20px;
}

.uae-stats__lead {
    font-family: var(--font-base);
    font-size: 15px;
    line-height: 1.65;
    color: #5d6b7a;
    margin: 0 0 26px;
}

.uae-stats__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    background: #0053B7;
    border-radius: 32px;
    font-family: var(--font-base);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.uae-stats__btn:hover,
.uae-stats__btn:focus {
    background: #003E8A;
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ---------- Grid: photo + 2x2 cards ---------- */
.uae-stats__grid {
    display: grid;
    grid-template-columns: 0.92fr 2fr;
    gap: 22px;
    align-items: stretch;
}

.uae-stats__photo {
    border-radius: 14px;
    overflow: hidden;
    min-height: 100%;
}

.uae-stats__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.uae-stats__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.uae-stat-card {
    min-height: 196px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 14px;
    padding: 26px 28px;
    transition: transform 0.25s ease;
}

.uae-stat-card:hover {
    transform: translateY(-3px);
}

.uae-stat-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.uae-stat-card__label {
    font-family: var(--font-base);
    font-size: 15px;
    font-weight: 500;
}

.uae-stat-card__arrow {
    display: inline-flex;
    flex-shrink: 0;
}

.uae-stat-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.uae-stat-card__num {
    font-family: var(--font-base);
    font-size: clamp(34px, 3vw, 46px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

.uae-stat-card__desc {
    font-family: var(--font-base);
    font-size: 13px;
    line-height: 1.4;
    max-width: 150px;
    text-align: right;
}

/* card variants */
.uae-stat-card--dark {
    background: #0053B7;
    color: var(--color-white);
}

.uae-stat-card--dark .uae-stat-card__label {
    color: rgba(255, 255, 255, 0.82);
}

.uae-stat-card--dark .uae-stat-card__arrow {
    color: rgba(255, 255, 255, 0.85);
}

.uae-stat-card--dark .uae-stat-card__num {
    color: var(--color-white);
}

.uae-stat-card--dark .uae-stat-card__desc {
    color: rgba(255, 255, 255, 0.72);
}

.uae-stat-card--light {
    background: #eef2f9;
    color: #0a1647;
}

.uae-stat-card--light .uae-stat-card__label {
    color: #0a1647;
}

.uae-stat-card--light .uae-stat-card__arrow {
    color: #0053B7;
}

.uae-stat-card--light .uae-stat-card__num {
    color: #0a1647;
}

.uae-stat-card--light .uae-stat-card__desc {
    color: #5d6b7a;
}

.uae-stat-card--orange {
    background: #9C00DD;
    color: var(--color-white);
}

.uae-stat-card--orange .uae-stat-card__label {
    color: rgba(255, 255, 255, 0.92);
}

.uae-stat-card--orange .uae-stat-card__arrow {
    color: var(--color-white);
}

.uae-stat-card--orange .uae-stat-card__num {
    color: var(--color-white);
}

.uae-stat-card--orange .uae-stat-card__desc {
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 991.98px) {
    .uae-stats {
        padding: 72px 0;
    }

    .uae-stats__head {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 36px;
    }

    .uae-stats__head-right {
        padding-top: 0;
        max-width: 520px;
    }

    .uae-stats__grid {
        grid-template-columns: 1fr;
    }

    .uae-stats__photo {
        min-height: 320px;
    }
}

@media (max-width: 575.98px) {
    .uae-stats {
        padding: 56px 0;
    }

    .uae-stats__cards {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   UAE Home — Case Studies (Proven Solutions)
   ========================================================================== */
.uae-cases {
    padding: 96px 0;
    background: var(--color-white);
}

.uae-cases__head {
    text-align: center;
    margin-bottom: 48px;
}

.uae-cases__tag {
    display: inline-block;
    padding: 7px 18px;
    border: 1px solid #d7dcd9;
    border-radius: 22px;
    font-family: var(--font-base);
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 22px;
}

.uae-cases__title {
    font-family: var(--font-base);
    font-weight: 700;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #233340;
    margin: 0;
}

.uae-case {
    display: block;
    height: 100%;
    text-decoration: none;
}

.uae-case__media {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    background: #eceef0;
    margin-bottom: 20px;
}

.uae-case__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.uae-case__placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e2e6e9 0%, #cfd6da 100%);
}

.uae-case:hover .uae-case__media img {
    transform: scale(1.05);
}

.uae-case__label {
    display: block;
    font-family: var(--font-base);
    font-size: 14px;
    font-weight: 400;
    color: #8a949e;
    margin-bottom: 10px;
}

.uae-case__title {
    font-family: var(--font-base);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.32;
    letter-spacing: -0.01em;
    color: #233340;
    margin: 0;
    transition: color 0.2s ease;
}

.uae-case:hover .uae-case__title {
    color: #1a4a60;
}

@media (max-width: 991.98px) {
    .uae-cases {
        padding: 72px 0;
    }

    .uae-cases__head {
        margin-bottom: 36px;
    }
}

@media (max-width: 575.98px) {
    .uae-cases {
        padding: 56px 0;
    }
}

/* ==========================================================================
   UAE Home — Let's Talk (Free Consultation contact)
   ========================================================================== */
.uae-contact {
    position: relative;
    padding: 88px 0;
    min-height: 660px;
    display: flex;
    align-items: center;
    background: var(--color-white);
    overflow: hidden;
    isolation: isolate;
    color: #0053B7;
}

.uae-contact__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.uae-contact__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(7, 14, 12, 0.90) 0%, rgba(7, 14, 12, 0.74) 38%, rgba(7, 14, 12, 0.62) 60%, rgba(7, 14, 12, 0.70) 100%);
}

.uae-contact .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.uae-contact__inner {
    display: grid;
    grid-template-columns: 1fr 1.02fr;
    gap: 52px;
    align-items: end;
}

/* ---------- Left info ---------- */
.uae-contact__tag {
    display: inline-block;
    padding: 8px 18px;
    background: #0053B7;
    border-radius: 20px;
    font-family: var(--font-base);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 22px;
}

.uae-contact__title {
    font-family: var(--font-base);
    font-weight: 800;
    font-size: clamp(34px, 3.6vw, 52px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: #0053B7;
    margin: 0 0 30px;
}

.uae-contact__rule {
    display: block;
    width: 100%;
    max-width: 470px;
    height: 1px;
    background: rgba(0, 83, 183, 0.22);
    margin: 0 0 28px;
}

.uae-contact__meta {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
}

.uae-contact__meta-label {
    display: block;
    font-family: var(--font-base);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(0, 83, 183, 0.7);
    margin-bottom: 8px;
}

.uae-contact__meta-value {
    font-family: var(--font-base);
    font-size: 18px;
    font-weight: 500;
    color: #0053B7;
    text-decoration: none;
}

a.uae-contact__meta-value:hover {
    color: #003E8A;
}

/* ---------- Right card ---------- */
.uae-contact__card {
    background: #9C00DD;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.18);
}

.uae-contact__card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    color: var(--color-white);
}

.uae-contact__card-title {
    font-family: var(--font-base);
    font-size: 21px;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
}

.uae-contact__card-icon {
    display: inline-flex;
    flex-shrink: 0;
    color: var(--color-white);
}

.uae-contact__card-body {
    background: var(--color-white);
    border-radius: 16px;
    margin: 0 8px 8px;
    padding: 26px 26px 24px;
    color: #233340;
}

.uae-contact__intro {
    font-family: var(--font-base);
    font-size: 14px;
    line-height: 1.6;
    color: #5d6b7a;
    margin: 0 0 22px;
    max-width: 430px;
}

.uae-contact__field label {
    display: block;
    font-family: var(--font-base);
    font-size: 13px;
    font-weight: 500;
    color: #233340;
    margin-bottom: 8px;
}

.uae-contact__input {
    width: 100%;
    border: 1px solid #e2e6e9;
    border-radius: 10px;
    padding: 13px 14px;
    font-family: var(--font-base);
    font-size: 14px;
    color: #233340;
    background: var(--color-white);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.uae-contact__input::placeholder {
    color: #9aa4ad;
}

.uae-contact__input:focus {
    border-color: #9C00DD;
    box-shadow: 0 0 0 3px rgba(156, 0, 221, 0.14);
}

.uae-contact__textarea {
    resize: vertical;
    min-height: 110px;
}

.uae-contact__form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.uae-contact__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: var(--uae-emerald);
    border: none;
    border-radius: 28px;
    font-family: var(--font-base);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.uae-contact__submit {
    background: #9C00DD;
}

.uae-contact__submit:hover {
    background: #7A00AD;
    transform: translateY(-2px);
}

.uae-contact__call {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-base);
    font-size: 14px;
    font-weight: 600;
    color: #233340;
    text-decoration: none;
}

.uae-contact__call-icon {
    display: inline-flex;
    color: #9C00DD;
}

.uae-contact__call:hover {
    color: #9C00DD;
}

@media (max-width: 991.98px) {
    .uae-contact {
        padding: 64px 0;
        min-height: 0;
    }

    .uae-contact__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: start;
    }
}

@media (max-width: 575.98px) {
    .uae-contact__meta {
        gap: 28px;
    }

    .uae-contact__card-body {
        padding: 22px 18px;
    }

    .uae-contact__submit {
        width: 100%;
    }

    .uae-contact__form-footer {
        justify-content: center;
        text-align: center;
    }
}

/* ==========================================================================
   UAE Home — Consulting Insights & Updates (blog)
   ========================================================================== */
.uae-insights {
    padding: 96px 0;
    background: var(--color-white);
}

.uae-insights__head {
    text-align: center;
    margin-bottom: 48px;
}

.uae-insights__tag {
    display: inline-block;
    padding: 7px 18px;
    border: 1px solid #d7dcd9;
    border-radius: 22px;
    font-family: var(--font-base);
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 22px;
}

.uae-insights .uae-insights__title {
    font-family: var(--font-base);
    font-weight: 700;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0053B7;
    margin: 0;
}

/* ---------- Card ---------- */
.uae-iblog {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 16px 16px 22px;
    box-shadow: 0 10px 30px rgba(0, 83, 183, 0.05);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.uae-iblog:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 46px rgba(0, 83, 183, 0.10);
}

.uae-iblog__media {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin-bottom: 18px;
    background: #eceef0;
}

.uae-iblog__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.uae-iblog:hover .uae-iblog__media img {
    transform: scale(1.05);
}

.uae-iblog__meta {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 6px 14px;
    border-bottom: 1px solid #ececec;
    margin-bottom: 16px;
    font-family: var(--font-base);
    font-size: 13px;
    color: #8a949e;
}

.uae-iblog__cat {
    color: #5d6b7a;
    font-weight: 500;
}

.uae-iblog__title {
    font-family: var(--font-base);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.32;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
    padding: 0 6px;
}

.uae-iblog__title a {
    color: #0053B7;
    text-decoration: none;
    transition: color 0.2s ease;
}

.uae-iblog__title a:hover {
    color: var(--uae-hero-green);
}

.uae-iblog__excerpt {
    font-family: var(--font-base);
    font-size: 14px;
    line-height: 1.6;
    color: #6b7785;
    margin: 0 0 22px;
    padding: 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.uae-iblog__more {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin: auto 6px 0;
    padding: 11px 24px;
    background: #0053B7;
    border-radius: 24px;
    font-family: var(--font-base);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.uae-iblog__more:hover {
    background: var(--uae-hero-green);
    color: var(--color-white);
}

@media (max-width: 991.98px) {
    .uae-insights {
        padding: 72px 0;
    }

    .uae-insights__head {
        margin-bottom: 36px;
    }
}

@media (max-width: 575.98px) {
    .uae-insights {
        padding: 56px 0;
    }
}

/* ==========================================================================
   UAE Home — Free Consultation growth CTA (before footer)
   ========================================================================== */
.uae-grow {
    position: relative;
    min-height: 312px;
    display: flex;
    align-items: center;
    padding: 54px 0;
    background: #0c1512;
    overflow: hidden;
    isolation: isolate;
}

.uae-grow__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.uae-grow__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(0deg, rgba(10, 18, 14, 0.35), rgba(10, 18, 14, 0.35)),
        linear-gradient(90deg, rgba(9, 16, 13, 0.82) 0%, rgba(9, 16, 13, 0.58) 45%, rgba(9, 16, 13, 0.50) 100%);
}

.uae-grow .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.uae-grow__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
}

.uae-grow__title {
    font-family: var(--font-base);
    font-weight: 800;
    font-size: clamp(28px, 3.2vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: var(--color-white);
    margin: 0;
}

.uae-grow__action {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    max-width: 340px;
}

.uae-grow__text {
    font-family: var(--font-base);
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.86);
    margin: 0;
}

.uae-grow__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    background: var(--uae-emerald);
    border-radius: 28px;
    font-family: var(--font-base);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.uae-grow__btn:hover,
.uae-grow__btn:focus {
    background: #003E8A;
    color: var(--color-white);
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .uae-grow {
        min-height: 0;
        padding: 48px 0;
    }

    .uae-grow__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .uae-grow__action {
        max-width: 480px;
    }
}

/* ==========================================================================
   UAE Home — Shared section title typography
   All main section headings share the same size / weight / line-height /
   letter-spacing for visual consistency across the page.
   ========================================================================== */
.uae-about__title,
.uae-services__title,
.uae-makes__title,
.uae-enquiry__title,
.uae-insights__title {
    font-family: var(--font-base);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-text);
}

/* ==========================================================================
   UAE Home — About Us section
   ========================================================================== */

.uae-about {
    background: var(--color-white);
    padding: 90px 0;
    color: var(--color-text);
}

.uae-about__inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---------- Top row: tag + title + 2-col description ---------- */
.uae-about__top {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    margin-bottom: 72px;
}

.uae-about__top-left {
    padding-top: 4px;
}

.uae-about__tag {
    display: inline-block;
    padding: 8px 22px;
    border: 1px solid var(--color-gold);
    border-radius: 999px;
    font-family: var(--font-base);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-text);
    text-transform: uppercase;
}

.uae-about__title {
    margin: 0 0 44px;
    max-width: 820px;
}

.uae-about__points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    max-width: 720px;
}

.uae-about-point__head {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.uae-about-point__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

.uae-about-point__title {
    font-family: var(--font-base);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text);
    margin: 0;
    line-height: 1.2;
}

.uae-about-point__text {
    font-family: var(--font-base);
    font-size: 14px;
    line-height: 1.65;
    color: #6a6a6a;
    margin: 0;
    max-width: 320px;
}

/* ---------- Bottom: building image (left) + 2x2 stat cells (right) ---------- */
.uae-about__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 18px;
}

.uae-about__hero-img {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 560px;
    background: #efefef;
}

.uae-about__hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.uae-about__cells {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}

/* Stat card */
.uae-stat {
    position: relative;
    background: #f3f3f5;
    border-radius: 22px;
    padding: 32px 32px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 270px;
    overflow: hidden;
}

.uae-stat__label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-base);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #1a1a1a;
    text-transform: uppercase;
}

.uae-stat__rule {
    flex: 1;
    height: 1px;
    background: #d6d6da;
}

.uae-stat__number {
    font-family: var(--font-base);
    font-size: clamp(40px, 4.2vw, 64px);
    font-weight: 500;
    line-height: 1;
    color: var(--color-text);
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: flex-start;
    gap: 4px;
    margin: 8px 0 8px;
}

.uae-stat__plus {
    color: var(--color-gold);
    font-size: 0.6em;
    line-height: 1;
    margin-top: 0.1em;
}

.uae-stat__caption {
    font-family: var(--font-base);
    font-size: 14px;
    color: #6a6a6a;
    line-height: 1.4;
}

/* Image variant (bottom-right cell) */
.uae-stat--image {
    padding: 0;
    background: #efefef;
}

.uae-stat--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 22px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .uae-about {
        padding: 72px 0 64px;
    }

    .uae-about__inner {
        padding: 0 24px;
    }

    .uae-about__top {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }

    .uae-about__points {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .uae-about__grid {
        grid-template-columns: 1fr;
    }

    .uae-about__hero-img {
        min-height: 360px;
    }

    .uae-about__cells {
        grid-template-rows: auto;
    }

    .uae-stat {
        min-height: 220px;
    }
}

@media (max-width: 575.98px) {
    .uae-about {
        padding: 80px 0 48px;
    }

    .uae-about__inner {
        padding: 0 18px;
    }

    .uae-about__cells {
        grid-template-columns: 1fr;
    }

    .uae-stat {
        padding: 26px 24px;
        min-height: 200px;
    }

    .uae-stat--image {
        min-height: 240px;
    }
}

/* ==========================================================================
   UAE Home — Services section
   ========================================================================== */

.uae-services {
    background: #f6f5ef;
    padding: 60px 0;
    color: var(--color-text);
}

.uae-services__inner {
    width: 100%;
    /* max-width: 1280px; */
    margin: 0 auto;
    padding: 0 40px;
}

/* ---------- Heading: tag + title (left) + nav (right) ---------- */
.uae-services__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    text-align: left;
    margin-bottom: 48px;
}

.uae-services__head-text {
    flex: 1;
}

.uae-services__tag {
    display: inline-block;
    padding: 8px 22px;
    border: 1px solid var(--color-gold);
    border-radius: 999px;
    font-family: var(--font-base);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-text);
    text-transform: uppercase;
    margin-bottom: 22px;
}

.uae-services__title {
    margin: 0;
}

/* ---------- Swiper carousel ---------- */
.uae-services__carousel {
    position: relative;
}

.uae-services-swiper {
    overflow: hidden;
    padding-bottom: 4px;
}

.uae-services-swiper .swiper-slide {
    height: auto;
}

/* Service card (white, padded — image on top + body below) */
.uae-svc {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--color-white);
    border-radius: 20px;
    padding: 14px;
    overflow: hidden;
    text-decoration: none;
    color: var(--color-text);
}

/* Image on top */
.uae-svc__media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    border-radius: 14px;
}

.uae-svc__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Body below image */
.uae-svc__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 10px 12px;
}

.uae-svc__title {
    font-family: var(--font-base);
    font-size: clamp(18px, 1.4vw, 21px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--color-text);
    margin: 0 0 8px;
}

.uae-svc__desc {
    margin: 0;
    font-family: var(--font-base);
    font-size: 14px;
    line-height: 1.55;
    color: #5b5b5b;
}

.uae-svc__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-family: var(--font-base);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gold);
}

.uae-svc__more svg {
    transition: transform 0.25s ease;
}

.uae-svc:hover .uae-svc__more svg {
    transform: translateX(4px);
}

/* ---------- Prev / Next controls (top right of header) ---------- */
.uae-services__nav-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.uae-services__nav {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(26, 26, 26, 0.18);
    border-radius: 50%;
    background: transparent;
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.uae-services__nav:hover {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.uae-services__nav.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* ---------- Footer link ---------- */
.uae-services__footer {
    text-align: center;
    margin-top: 48px;
}

.uae-services__footer-text {
    font-family: var(--font-base);
    font-size: 15px;
    color: #4a4a4a;
    margin: 0;
}

.uae-services__footer-link {
    color: var(--color-text);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
    margin-left: 6px;
    transition: color 0.18s ease;
}

.uae-services__footer-link:hover,
.uae-services__footer-link:focus {
    color: var(--color-gold);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .uae-services {
        padding: 44px 0;
    }

    .uae-services__inner {
        padding: 0 24px;
    }

    .uae-services__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 36px;
    }
}

@media (max-width: 575.98px) {
    .uae-services {
        padding: 36px 0;
    }

    .uae-services__inner {
        padding: 0 18px;
    }

    .uae-services__nav {
        width: 44px;
        height: 44px;
    }
}

/* ==========================================================================
   UAE Home — What makes us different
   Uses Bootstrap 5 .container / .row / .col-* for grid; this file only
   styles the visual elements.
   ========================================================================== */

.uae-makes {
    background: var(--color-white);
    padding: 60px 0;
    color: var(--color-text);
}

/* ---------- Left: image + floating rating card ---------- */
.uae-makes__image-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    max-width: 480px;
    margin: 0 auto;
    background: #efefef;
}

.uae-makes__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.uae-makes__rating {
    position: absolute;
    left: 18px;
    bottom: 18px;
    width: 220px;
    padding: 16px 18px;
    background: rgba(20, 20, 25, 0.42);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    color: var(--color-white);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.uae-makes__rating-score {
    font-family: var(--font-base);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    color: var(--color-lime);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.uae-makes__rating-avatars {
    display: inline-flex;
    margin-bottom: 10px;
}

.uae-makes__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.92);
    overflow: hidden;
    margin-right: -10px;
    background: #ddd;
}

.uae-makes__avatar:last-child {
    margin-right: 0;
}

.uae-makes__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.uae-makes__rating-stars {
    color: #ff8a00;
    display: inline-flex;
    gap: 3px;
    margin-bottom: 6px;
}

.uae-makes__rating-label {
    font-family: var(--font-base);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.3;
}

/* ---------- Right: content ---------- */
.uae-makes__content {
    padding-top: 4px;
}

.uae-makes__tag {
    display: inline-block;
    padding: 7px 20px;
    border: 1px solid var(--color-gold);
    border-radius: 999px;
    font-family: var(--font-base);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-text);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.uae-makes__title {
    margin: 0 0 16px;
}

.uae-makes__lead {
    font-family: var(--font-base);
    font-size: 14px;
    line-height: 1.6;
    color: #5a5a5a;
    max-width: 560px;
    margin: 0 0 24px;
}

.uae-makes__rows {
    display: flex;
    flex-direction: column;
}

.uae-makes-row {
    padding: 16px 0;
    border-top: 1px solid #e6e6e6;
    margin: 0;
}

.uae-makes-row:last-child {
    border-bottom: 1px solid #e6e6e6;
}

.uae-makes-row__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-white);
    flex-shrink: 0;
}

.uae-makes-row__icon svg {
    width: 22px;
    height: 22px;
}

.uae-makes-row__title {
    font-family: var(--font-base);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
    margin: 0;
}

.uae-makes-row__text {
    font-family: var(--font-base);
    font-size: 13px;
    line-height: 1.55;
    color: #6a6a6a;
    margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .uae-makes {
        padding: 44px 0;
    }

    .uae-makes__image-wrap {
        aspect-ratio: 16 / 11;
        max-width: 560px;
    }
}

@media (max-width: 575.98px) {
    .uae-makes {
        padding: 36px 0;
    }

    .uae-makes__rating {
        left: 14px;
        bottom: 14px;
        width: 190px;
        padding: 14px 16px;
    }

    .uae-makes__rating-score {
        font-size: 28px;
    }
}

/* ==========================================================================
   UAE Home — Enquiry section (Get specialist advice)
   Uses Bootstrap 5 grid (.container/.row/.col-*). Banner + form are contained
   inside the Bootstrap .container (not full-bleed).
   ========================================================================== */

.uae-enquiry {
    padding: 60px 0;
    background: var(--color-white);
}

.uae-enquiry__wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    isolation: isolate;
    padding: 80px 24px;
}

/* Concave curve cut at the bottom-left of the banner — the section's white bg
   "carves" into the banner with a rounded inner corner. */
.uae-enquiry__wrap::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 140px;
    height: 56px;
    background: var(--color-white);
    border-top-right-radius: 48px;
    z-index: 2;
    pointer-events: none;
}

.uae-enquiry__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.uae-enquiry__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 15, 20, 0.15) 0%, rgba(15, 15, 20, 0.25) 100%);
    z-index: -1;
    pointer-events: none;
}

/* ---------- Card ---------- */
.uae-enquiry__card {
    position: relative;
    background: var(--color-white);
    border-radius: 20px;
    padding: 56px 56px 48px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

/* Decorative building line illustrations behind the form */
.uae-enquiry__shape {
    position: absolute;
    bottom: 0;
    max-width: 30%;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

.uae-enquiry__shape--left {
    left: 0;
}

.uae-enquiry__shape--right {
    right: 0;
}

.uae-enquiry__head,
.uae-enquiry__form {
    position: relative;
    z-index: 1;
}

.uae-enquiry__head {
    text-align: center;
    margin-bottom: 38px;
}

.uae-enquiry__tag {
    display: inline-block;
    padding: 7px 20px;
    border: 1px solid var(--color-gold);
    border-radius: 999px;
    font-family: var(--font-base);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-text);
    text-transform: uppercase;
    margin-bottom: 22px;
}

.uae-enquiry__title {
    margin: 0;
}

/* ---------- Form fields ---------- */
.uae-enquiry__input {
    display: block;
    width: 100%;
    height: 56px;
    padding: 0 26px;
    background: #f1f0eb;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--font-base);
    font-size: 14px;
    color: var(--color-text);
    outline: 0;
    transition: border-color 0.18s ease, background 0.18s ease;
    -webkit-appearance: none;
    appearance: none;
}

.uae-enquiry__input::placeholder {
    color: #8a8a8a;
}

.uae-enquiry__input:focus {
    border-color: var(--color-gold);
    background: var(--color-white);
}

/* Select with chevron */
.uae-enquiry__select {
    padding-right: 48px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%231a1a1a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 22px center;
    background-size: 14px 14px;
    color: #8a8a8a;
    cursor: pointer;
}

.uae-enquiry__select:valid,
.uae-enquiry__select option:not([disabled]) {
    color: var(--color-text);
}

/* ---------- Footer: note + submit ---------- */
.uae-enquiry__footer {
    margin-top: 28px;
}

.uae-enquiry__note {
    font-family: var(--font-base);
    font-size: 14px;
    line-height: 1.55;
    color: #5a5a5a;
    margin: 0;
}

.uae-enquiry__submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 6px 6px 28px;
    background: var(--color-gold);
    border: 0;
    border-radius: 999px;
    color: var(--color-white);
    font-family: var(--font-base);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
}

.uae-enquiry__submit:hover,
.uae-enquiry__submit:focus {
    background: #7A00AD;
    transform: translateY(-2px);
}

.uae-enquiry__submit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-gold);
    transition: transform 0.18s ease;
}

.uae-enquiry__submit:hover .uae-enquiry__submit-icon,
.uae-enquiry__submit:focus .uae-enquiry__submit-icon {
    transform: rotate(-12deg);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .uae-enquiry {
        padding: 44px 0;
    }

    .uae-enquiry__wrap {
        padding: 56px 16px;
        border-radius: 20px;
    }

    .uae-enquiry__wrap::before {
        width: 110px;
        height: 44px;
        border-top-right-radius: 38px;
    }

    .uae-enquiry__card {
        padding: 40px 32px 36px;
    }

    .uae-enquiry__shape {
        max-width: 40%;
        opacity: 0.35;
    }
}

@media (max-width: 575.98px) {
    .uae-enquiry {
        padding: 36px 0;
    }

    .uae-enquiry__wrap {
        padding: 36px 10px;
        border-radius: 16px;
    }

    .uae-enquiry__wrap::before {
        width: 80px;
        height: 34px;
        border-top-right-radius: 28px;
    }

    .uae-enquiry__card {
        padding: 32px 22px 28px;
        border-radius: 18px;
    }

    .uae-enquiry__head {
        margin-bottom: 28px;
    }

    .uae-enquiry__input {
        height: 50px;
        padding: 0 22px;
    }

    .uae-enquiry__submit {
        width: 100%;
        justify-content: space-between;
    }

    .uae-enquiry__shape {
        display: none;
    }
}

/* ==========================================================================
   UAE Home — Articles & Insights
   Uses Bootstrap 5 grid (.container/.row/.col-*).
   ========================================================================== */

/* ==========================================================================
   UAE Home — Featured Properties (Valunxt brand-themed)
   Brand colors: blue #0053B7 (primary), pink #9C00DD (accent)
   ========================================================================== */

.uae-properties {
    /* Valunxt theme palette */
    --vx-blue: #0053B7;
    --vx-blue-dark: #003E8A;
    --vx-pink: #9C00DD;
    --vx-pink-dark: #7A00AD;
    --vx-soft: #f5f7fc;

    padding: 90px 0;
    background: #ffffff;
}

.uae-properties__head-row {
    margin-bottom: 40px;
}

.uae-properties__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--vx-pink);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.uae-properties__title {

    font-size: clamp(28px, 3.4vw, 38px);
    line-height: 1.15;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.uae-properties__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--vx-blue);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: color .25s ease;
}

.uae-properties__cta:hover {
    color: var(--vx-pink);
}

.uae-properties__cta-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--vx-pink);
    color: #fff;
    transition: transform .25s ease;
}

.uae-properties__cta:hover .uae-properties__cta-icon {
    transform: translate(2px, -2px);
}

/* ----- Card -------------------------------------------------------------- */
.uae-prop {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 83, 183, .08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
    border: 1px solid rgba(0, 83, 183, .06);
}

.uae-prop:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(156, 0, 221, .18);
}

.uae-prop__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eef0fa;
}

.uae-prop__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.uae-prop:hover .uae-prop__image img {
    transform: scale(1.06);
}

.uae-prop__badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.uae-prop__badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

.uae-prop__badge--primary {
    background: var(--vx-blue);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 83, 183, .35);
}

.uae-prop__badge--light {
    background: rgba(255, 255, 255, .92);
    color: var(--vx-blue-dark);
}

.uae-prop__fav {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    border: 0;
    color: var(--vx-pink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    transition: background .25s ease, color .25s ease, transform .25s ease;
    z-index: 2;
}

.uae-prop__fav:hover {
    background: var(--vx-pink);
    color: #fff;
    transform: scale(1.08);
}

.uae-prop__fav.is-active {
    background: var(--vx-pink);
    color: #fff;
}

.uae-prop__fav svg {
    transition: transform .2s ease;
}

.uae-prop__fav.is-active svg {
    fill: currentColor;
}

.uae-prop__body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.uae-prop__title {
    font-family: var(--font-display, 'Avenir Next', 'Avenir', sans-serif);
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 0 0 10px;
    line-height: 1.25;
}

.uae-prop__location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 14px;
    color: #6b7280;
    font-size: 13.5px;
}

.uae-prop__location svg {
    color: var(--vx-pink);
    flex-shrink: 0;
}

.uae-prop__specs {
    list-style: none;
    margin: 0 0 18px;
    padding: 12px 0;
    border-top: 1px solid #eef0fa;
    border-bottom: 1px solid #eef0fa;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.uae-prop__spec {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: #4b5563;
    font-weight: 500;
}

.uae-prop__spec svg {
    color: var(--vx-blue);
    flex-shrink: 0;
}

.uae-prop__foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.uae-prop__price {
    font-size: 19px;
    font-weight: 700;
    color: var(--vx-blue);
    letter-spacing: -.01em;
}

.uae-prop__cta {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--vx-blue);
    color: var(--vx-blue);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
    white-space: nowrap;
}

.uae-prop__cta:hover {
    background: var(--vx-blue);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 14px rgba(0, 83, 183, .25);
}

@media (max-width: 575.98px) {
    .uae-properties {
        padding: 60px 0;
    }

    .uae-prop__body {
        padding: 16px 18px 18px;
    }

    .uae-prop__title {
        font-size: 19px;
    }

    .uae-prop__price {
        font-size: 17px;
    }
}

/* ==========================================================================
   Property Detail page (.pd) — Valunxt theme, no gradients
   ========================================================================== */
.pd {
    --pd-blue: #0053B7;
    --pd-blue-dark: #003E8A;
    --pd-purple: #9C00DD;
    --pd-ink: #1f2430;
    --pd-muted: #6b7280;
    --pd-soft: #f5f7fc;
    --pd-line: #e6e8f0;
    --pd-radius: 14px;
    background: #fff;
}

.pd * {
    box-sizing: border-box;
}

/* ----- Buttons ----- */
.pd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
    white-space: nowrap;
}

.pd-btn--solid {
    background: var(--pd-blue);
    color: #fff;
}

.pd-btn--solid:hover {
    background: var(--pd-blue-dark);
    color: #fff;
    transform: translateY(-1px);
}

.pd-btn--ghost {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
}

.pd-btn--ghost:hover {
    background: #fff;
    color: var(--pd-blue);
}

.pd-btn--tint {
    background: rgba(0, 83, 183, .08);
    color: var(--pd-blue);
}

.pd-btn--tint:hover {
    background: rgba(0, 83, 183, .14);
    color: var(--pd-blue);
}

.pd-btn--block {
    width: 100%;
}

/* ----- Hero ----- */
.pd-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    overflow: hidden;
    color: #fff;
}

.pd-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .62);
}

.pd-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 40px;
    padding-bottom: 40px;
}

.pd-hero__body {
    max-width: 760px;
}

.pd-hero__badges {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.pd-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.pd-badge--solid {
    background: var(--pd-blue);
    color: #fff;
}

.pd-hero__title {
    font-family: var(--font-display, 'Avenir Next', 'Avenir', sans-serif);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.14;
    margin: 0 0 16px;
    color: #ffffff;
}

.pd-hero__loc {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, .92);
}

.pd-hero__loc svg {
    color: #C97FE8;
    flex-shrink: 0;
}

.pd-hero__row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.pd-hero__price {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -.01em;
    display: block;
    color: #ffffff;
}

.pd-hero__price-note {
    font-size: 13px;
    color: rgba(255, 255, 255, .82);
}

.pd-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.pd-hero__specs {
    list-style: none;
    margin: 0;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}

.pd-hero__specs li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .92);
}

.pd-hero__specs svg {
    color: rgba(255, 255, 255, .8);
}

/* ----- Layout ----- */
.pd-wrap {
    padding: 36px 0 80px;
}

.pd-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.pd-left {
    display: flex;
    flex-direction: column;
    gap: 26px;
    min-width: 0;
}

.pd-right {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* ----- Generic card ----- */
.pd-card {
    background: #fff;
    border: 1px solid var(--pd-line);
    border-radius: var(--pd-radius);
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 83, 183, .05);
}

.pd-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.pd-card__title {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
    font-weight: 700;
    color: var(--pd-ink);
    margin: 0;
}

.pd-card__title svg {
    color: var(--pd-blue);
}

.pd-card__dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 83, 183, .1);
    display: inline-block;
    position: relative;
}

.pd-card__dot::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 2px solid var(--pd-blue);
}

/* ----- Gallery ----- */
.pd-gallery__tools {
    display: flex;
    gap: 8px;
}

.pd-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--pd-blue);
    background: var(--pd-soft);
    border: 1px solid var(--pd-line);
    cursor: pointer;
}

.pd-pill--solid {
    background: var(--pd-blue);
    color: #fff;
    border-color: var(--pd-blue);
}

.pd-gallery__stage {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--pd-soft);
}

.pd-gallery__main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pd-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    border: 0;
    color: var(--pd-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .18);
    transition: background .2s ease, color .2s ease;
}

.pd-gallery__nav:hover {
    background: var(--pd-blue);
    color: #fff;
}

.pd-gallery__nav--prev {
    left: 14px;
}

.pd-gallery__nav--next {
    right: 14px;
}

.pd-gallery__zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    color: var(--pd-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pd-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.pd-thumb {
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    aspect-ratio: 16 / 11;
    background: var(--pd-soft);
    transition: border-color .2s ease;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pd-thumb.is-active {
    border-color: var(--pd-blue);
}

/* ----- Tabs ----- */
.pd-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    background: var(--pd-soft);
    padding: 6px;
    border-radius: 10px;
    margin-bottom: 18px;
}

.pd-tab {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--pd-muted);
    transition: background .2s ease, color .2s ease;
}

.pd-tab.is-active {
    background: #fff;
    color: var(--pd-blue);
    box-shadow: 0 2px 6px rgba(0, 83, 183, .08);
}

.pd-tabs__panel {
    display: none;
}

.pd-tabs__panel.is-active {
    display: block;
}

.pd-tabs__heading {
    font-family: var(--font-display, serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--pd-blue);
    margin: 0 0 4px;
}

.pd-tabs__sub {
    font-size: 13.5px;
    color: var(--pd-blue);
    opacity: .8;
    margin: 0 0 14px;
}

.pd-tabs__text {
    font-size: 14px;
    line-height: 1.7;
    color: #54545f;
    margin: 0;
}

.pd-feature-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 22px;
}

.pd-feature-grid li {
    position: relative;
    padding-left: 24px;
    font-size: 13.5px;
    color: #54545f;
}

.pd-feature-grid li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pd-purple);
    box-shadow: 0 0 0 3px rgba(156, 0, 221, .14);
}

/* ----- Generic block (left content sections) ----- */
.pd-block__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display, serif);
    font-size: 21px;
    font-weight: 600;
    color: var(--pd-ink);
    margin: 0 0 18px;
}

.pd-block__title svg {
    color: var(--pd-blue);
}

.pd-block__sub {
    font-size: 13.5px;
    color: var(--pd-muted);
    margin: -10px 0 16px 30px;
}

/* Investment highlights */
.pd-invest {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pd-invest__cell {
    border: 1px solid var(--pd-line);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    background: #fff;
}

.pd-invest__val {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--pd-blue);
    margin-bottom: 4px;
}

.pd-invest__lbl {
    font-size: 12.5px;
    color: var(--pd-muted);
}

/* Payment plan */
.pd-pay {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pd-pay__row {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--pd-line);
    border-radius: 12px;
    padding: 16px 20px;
    background: #fff;
}

.pd-pay__pct {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(0, 83, 183, .08);
    color: var(--pd-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.pd-pay__lbl {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--pd-ink);
}

.pd-pay__amt {
    margin-left: auto;
    font-size: 16px;
    font-weight: 700;
    color: var(--pd-blue);
}

/* Map */
.pd-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--pd-line);
    background: var(--pd-soft);
}

.pd-map iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

/* ----- Agent card ----- */
.pd-agent {
    background: var(--pd-blue);
    color: #fff;
    border-radius: var(--pd-radius);
    padding: 20px;
}

.pd-agent__top {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
}

.pd-agent__photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, .3);
}

.pd-agent__name {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 2px;
    color: #fff;
}

.pd-agent__role {
    font-size: 12.5px;
    opacity: .85;
    margin: 0 0 3px;
}

.pd-agent__rating {
    font-size: 12px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pd-stars {
    color: #ffc83d;
    letter-spacing: 1px;
}

.pd-agent__btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 8px;
}

.pd-agent__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
    transition: background .2s ease;
}

.pd-agent__btn:hover {
    background: rgba(255, 255, 255, .24);
    color: #fff;
}

.pd-agent__btn--ghost {
    background: #fff;
    color: var(--pd-blue);
    border-color: #fff;
}

.pd-agent__btn--ghost:hover {
    background: rgba(255, 255, 255, .88);
    color: var(--pd-blue);
}

.pd-agent__list {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
}

.pd-agent__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 4px;
    font-size: 13.5px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.pd-agent__list li svg {
    opacity: .9;
}

/* ----- Forms / inputs ----- */
.pd-form__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pd-input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--pd-line);
    border-radius: 8px;
    font-size: 13.5px;
    color: var(--pd-ink);
    background: #fff;
    font-family: inherit;
}

.pd-input::placeholder {
    color: #9aa0ac;
}

.pd-input:focus {
    outline: none;
    border-color: var(--pd-blue);
}

.pd-input--flag {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--pd-ink);
    font-size: 12.5px;
}

.pd-flag {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
    display: inline-flex;
}

.pd-flag svg,
.pd-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-input--icon {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
}

.pd-input--icon .pd-input__ic {
    color: var(--pd-blue);
    font-weight: 700;
}

.pd-input--icon input {
    border: 0;
    padding: 11px 0;
    width: 100%;
    font-size: 13.5px;
    background: transparent;
}

.pd-input--icon input:focus {
    outline: none;
}

.pd-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* intl-tel-input country dropdown — match the form inputs */
.pd-itel-wrap {
    width: 100%;
}

.pd-itel-wrap .iti {
    width: 100%;
    display: block;
}

.pd-itel-wrap .iti__selected-flag {
    border-radius: 8px 0 0 8px;
    padding: 0 10px 0 12px;
}

.pd-itel-wrap input.pd-itel {
    width: 100%;
}

.iti--separate-dial-code .iti__selected-dial-code {
    font-size: 13.5px;
    color: var(--pd-ink);
}

.iti__country-list {
    font-size: 13.5px;
}

.pd-form__terms {
    font-size: 12px;
    color: var(--pd-muted);
    line-height: 1.5;
    margin: 8px 0 0;
    text-align: center;
}

.pd-form__terms a {
    color: var(--pd-blue);
    text-decoration: underline;
}

/* ----- Mortgage ----- */
.pd-mort__label {
    display: block;
    font-size: 12.5px;
    color: var(--pd-muted);
    margin: 12px 0 6px;
}

.pd-mort__slide {
    margin-top: 16px;
}

.pd-mort__slide-cap {
    display: block;
    font-size: 12.5px;
    color: var(--pd-ink);
    margin-bottom: 8px;
}

.pd-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: var(--pd-line);
    outline: none;
}

.pd-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--pd-blue);
    cursor: pointer;
}

.pd-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--pd-blue);
    cursor: pointer;
}

.pd-mort__scale {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--pd-muted);
    margin-top: 6px;
}

.pd-mort__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 18px 0 14px;
}

.pd-mort__cardbox {
    border: 1px solid var(--pd-line);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.pd-mort__cardlbl {
    display: block;
    font-size: 11.5px;
    color: var(--pd-muted);
    margin-bottom: 4px;
}

.pd-mort__cardval {
    font-size: 15px;
    font-weight: 700;
    color: var(--pd-blue);
}

.pd-mort__rows {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.pd-mort__rows li {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: var(--pd-muted);
    padding: 6px 0;
}

.pd-mort__rows li span:last-child {
    color: var(--pd-ink);
    font-weight: 600;
}

/* ----- Permit ----- */
.pd-permit__row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.pd-qr {
    flex-shrink: 0;
    border: 1px solid var(--pd-line);
    border-radius: 8px;
    padding: 6px;
    background: #fff;
    display: inline-flex;
}

.pd-qr img {
    display: block;
    width: 84px;
    height: 84px;
    border-radius: 4px;
}

.pd-permit__lbl {
    display: block;
    font-size: 12px;
    color: var(--pd-muted);
    margin-bottom: 4px;
}

.pd-permit__num {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--pd-ink);
    letter-spacing: .02em;
}

.pd-permit__sub {
    display: block;
    font-size: 12px;
    color: var(--pd-muted);
    margin-top: 6px;
}

/* ----- Quick contact ----- */
.pd-quick__text {
    font-size: 13px;
    color: var(--pd-muted);
    line-height: 1.55;
    margin: 0 0 14px;
}

.pd-quick .pd-btn {
    margin-bottom: 10px;
}

.pd-quick .pd-btn:last-child {
    margin-bottom: 0;
}

/* ----- Full-width sections ----- */
.pd-section {
    margin-top: 44px;
    border: 1px solid var(--pd-line);
    border-radius: var(--pd-radius);
    padding: 34px;
}

.pd-section__title {
    font-size: 19px;
    font-weight: 700;
    color: var(--pd-blue);
    margin: 0 0 6px;
}

.pd-section__sub {
    font-size: 13.5px;
    color: var(--pd-muted);
    margin: 0 0 26px;
}

.pd-register__form {
    gap: 18px;
}

.pd-near__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pd-near__card {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--pd-line);
    border-radius: 12px;
    padding: 16px 18px;
    background: #fff;
}

.pd-near__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    flex-shrink: 0;
    background: var(--pd-blue);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pd-near__name {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--pd-ink);
    margin: 0 0 3px;
}

.pd-near__meta {
    font-size: 12px;
    color: var(--pd-muted);
    margin: 0;
}

/* Register interest */
.pd-register__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pd-register__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.pd-input--phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-input--phone .pd-dial {
    font-size: 13px;
    color: var(--pd-ink);
    font-weight: 600;
}

.pd-input--phone input {
    border: 0;
    padding: 0;
    flex: 1;
    font-size: 13.5px;
    background: transparent;
}

.pd-input--phone input:focus {
    outline: none;
}

/* ----- Responsive ----- */
@media (max-width: 991.98px) {
    .pd-layout {
        grid-template-columns: 1fr;
    }

    .pd-right {
        order: 2;
    }

    .pd-invest {
        grid-template-columns: repeat(2, 1fr);
    }

    .pd-near__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pd-register__row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .pd-hero__row {
        flex-direction: column;
        align-items: flex-start;
    }

    .pd-hero__specs {
        gap: 14px;
    }

    .pd-gallery__thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .pd-feature-grid {
        grid-template-columns: 1fr;
    }

    .pd-invest {
        grid-template-columns: 1fr 1fr;
    }

    .pd-near__grid {
        grid-template-columns: 1fr;
    }

    .pd-agent__btns {
        grid-template-columns: 1fr;
    }

    .pd-section {
        padding: 22px 18px;
    }
}

/* ==========================================================================
   UAE Home — global UI normalisation (overrides, kept last in the cascade)
   1) All main section headings: weight 500 + one shared size
   2) Every section: equal 40px top/bottom padding
   ========================================================================== */

/* 1) Uniform main-heading typography (colour preserved per section) */
.uae-trusted__title,
.uae-expertise__title,
.uae-cta__title,
.uae-stats__title,
.uae-cases__title,
.uae-contact__title,
.uae-insights .uae-insights__title,
.uae-grow__title {
    font-weight: 500;
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.12;
}

/* 2) Uniform vertical rhythm — 40px top & bottom on every section */
.uae-trusted,
.uae-expertise,
.uae-cta,
.uae-stats,
.uae-cases,
.uae-contact,
.uae-insights,
.uae-grow,
.uae-about,
.uae-services,
.uae-makes,
.uae-properties,
.uae-enquiry {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Full-bleed banners: drop the large min-heights / inner paddings so the
   40px section padding is the actual spacing */
/* .uae-cta,
.uae-contact,
.uae-grow {
    min-height: 0;
} */

.uae-cta__inner {
    padding: 0;
}

.uae-contact__inner {
    align-items: center;
}

/* ==========================================================================
   UAE Home — Featured Insights newsletter banner (before footer)
   ========================================================================== */
.uae-finsights {
    padding: 0;
    background: var(--color-white);
}

.uae-finsights__panel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    border-radius: 0;
    overflow: hidden;
    background: #0a1647;
    isolation: isolate;
}

/* ---------- Left content ---------- */
.uae-finsights__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 56px 56px 150px;
}

.uae-finsights__tag {
    font-family: var(--font-base);
    font-size: 19px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 30px;
}

.uae-finsights__title {
    font-family: var(--font-base);
    font-weight: 400;
    font-size: clamp(28px, 2.9vw, 42px);
    line-height: 1.22;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin: 0;
    max-width: 560px;
}

/* ---------- Right media ---------- */
.uae-finsights__media {
    position: relative;
    overflow: hidden;
}

.uae-finsights__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.uae-finsights__tint {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, #0a1647 0%, rgba(10, 22, 71, 0.35) 26%, rgba(10, 22, 71, 0) 58%),
        linear-gradient(125deg, rgba(0, 83, 183, 0.55) 0%, rgba(0, 110, 180, 0.30) 55%, rgba(28, 170, 200, 0.14) 100%);
}

/* ---------- Bottom subscribe bar ---------- */
.uae-finsights__bar {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    padding: 22px 30px;
    border-radius: 18px;
    background: rgba(231, 236, 241, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.uae-finsights__bar-text {
    font-family: var(--font-base);
    font-size: clamp(17px, 1.5vw, 22px);
    font-weight: 400;
    color: #233340;
    margin: 0;
}

.uae-finsights__form {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 480px;
    min-width: 280px;
    background: #ffffff;
    border-radius: 12px;
    padding: 7px 7px 7px 8px;
    box-shadow: 0 6px 18px rgba(0, 83, 183, 0.08);
}

.uae-finsights__input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-base);
    font-size: 15px;
    color: #233340;
    padding: 12px 14px;
}

.uae-finsights__input::placeholder {
    color: #8a949e;
}

.uae-finsights__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: none;
    cursor: pointer;
    padding: 13px 24px;
    border-radius: 9px;
    background: #0053B7;
    color: #ffffff;
    font-family: var(--font-base);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease;
}

.uae-finsights__btn:hover {
    background: #003E8A;
    transform: translateY(-1px);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .uae-finsights {
        padding: 0;
    }

    .uae-finsights__panel {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .uae-finsights__content {
        padding: 44px 32px 40px;
    }

    .uae-finsights__media {
        min-height: 240px;
        order: -1;
    }

    .uae-finsights__bar {
        position: static;
        left: auto;
        right: auto;
        bottom: auto;
        border-radius: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        background: #e7ecf1;
    }
}

@media (max-width: 575.98px) {
    .uae-finsights__content {
        padding: 36px 22px 32px;
    }

    .uae-finsights__form {
        max-width: none;
    }
}

/* ==========================================================================
   UAE Home — Why Choose Us / Building Prosperity (before footer)
   ========================================================================== */
.uae-why {
    padding: 80px 0;
    background: var(--color-white);
}

.uae-why__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
    align-items: start;
}

/* ---------- Left ---------- */
.uae-why__tag {
    display: inline-block;
    padding: 7px 18px;
    border: 1px solid #d7dcd9;
    border-radius: 22px;
    font-family: var(--font-base);
    font-size: 13px;
    font-weight: 500;
    color: #233340;
    margin-bottom: 24px;
}

.uae-why__title {
    font-family: var(--font-base);
    font-weight: 700;
    font-size: clamp(30px, 3.4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0a1647;
    margin: 0 0 26px;
    max-width: 460px;
}

.uae-why__lead {
    font-family: var(--font-base);
    font-size: 15px;
    line-height: 1.7;
    color: #5d6b7a;
    margin: 0 0 28px;
    max-width: 430px;
}

.uae-why__list {
    list-style: none;
    margin: 0 0 38px;
    padding: 0;
}

.uae-why__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-base);
    font-size: 16px;
    font-weight: 500;
    color: #233340;
    margin-bottom: 16px;
}

.uae-why__item:last-child {
    margin-bottom: 0;
}

.uae-why__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #eef2f9;
    color: #0053B7;
}

.uae-why__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    background: #0053B7;
    border-radius: 32px;
    font-family: var(--font-base);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.uae-why__btn:hover,
.uae-why__btn:focus {
    background: #003E8A;
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ---------- Right panel ---------- */
.uae-why__panel {
    background: #f3f5f7;
    border-radius: 20px;
    padding: 30px;
}

.uae-why__quote {
    font-family: var(--font-base);
    font-size: clamp(17px, 1.35vw, 20px);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: #0a1647;
    margin: 0 0 24px;
    padding: 6px 6px 0;
}

.uae-why__cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.uae-why-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--color-white);
    border-radius: 14px;
    padding: 24px 26px;
    box-shadow: 0 8px 24px rgba(0, 83, 183, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.uae-why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0, 83, 183, 0.1);
}

.uae-why-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #eef2f9;
    color: #0053B7;
}

.uae-why-card__title {
    font-family: var(--font-base);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #0a1647;
    margin: 2px 0 8px;
}

.uae-why-card__desc {
    font-family: var(--font-base);
    font-size: 14px;
    line-height: 1.55;
    color: #5d6b7a;
    margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .uae-why {
        padding: 56px 0;
    }

    .uae-why__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 575.98px) {
    .uae-why__panel {
        padding: 20px;
    }

    .uae-why-card {
        padding: 20px;
        gap: 16px;
    }
}