/* =========================================
   DUBAI HERO
========================================= */

.dubai-dm-hero {
    position: relative;
    overflow: hidden;
    padding: 85px 0 80px;
    background: #ffffff;
}

.dubai-dm-hero .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.dubai-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 70px;
}


/* =========================================
   BACKGROUND SHAPES
========================================= */

.dubai-hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.shape-one {
    width: 500px;
    height: 500px;
    right: -230px;
    top: -200px;
    background: #eef5ff;
}

.shape-two {
    width: 260px;
    height: 260px;
    left: -180px;
    bottom: -150px;
    background: #f7faff;
}


/* =========================================
   BADGE
========================================= */

.dubai-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 15px;
    margin-bottom: 20px;

    color: #1e5eff;
    background: #eef5ff;

    border: 1px solid #dbe8ff;
    border-radius: 50px;

    font-size: 13px;
    font-weight: 600;
}

.dubai-hero-badge span {
    width: 7px;
    height: 7px;
    background: #1e5eff;
    border-radius: 50%;
}


/* =========================================
   HEADING
========================================= */

.dubai-hero-content h1 {
    max-width: 690px;
    margin: 0 0 22px;

    color: #172033;

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -2px;
}

.dubai-hero-content h2 strong {
    display: block;
    color: #1e5eff;
    font-weight: 700;
}

.dubai-hero-content > p {
    max-width: 650px;
    margin: 0 0 30px;

    color: #667085;

    font-size: 17px;
    line-height: 1.75;
}


/* =========================================
   BUTTONS
========================================= */

.dubai-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-bottom: 30px;
}

.dubai-btn-primary,
.dubai-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 52px;
    padding: 0 23px;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.3s ease;
}

.dubai-btn-primary {
    color: #ffffff !important;
    background: #1e5eff;
    border: 1px solid #1e5eff;
}

.dubai-btn-primary:hover {
    color: #ffffff !important;
    background: #124bd6;
    border-color: #124bd6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30,94,255,0.20);
}

.dubai-btn-secondary {
    color: #172033 !important;
    background: #ffffff;
    border: 1px solid #d8dee8;
}

.dubai-btn-secondary:hover {
    color: #1e5eff !important;
    border-color: #1e5eff;
}


/* =========================================
   TRUST POINTS
========================================= */

.dubai-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #667085;
    font-size: 12px;
}

.hero-trust-item i {
    color: #1e5eff;
    font-size: 13px;
}


/* =========================================
   RIGHT VISUAL
========================================= */

.dubai-hero-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* MAIN DASHBOARD */

.hero-visual-main {
    position: relative;
    width: 470px;
    padding: 27px;

    background: #ffffff;

    border: 1px solid #e4eaf2;
    border-radius: 18px;

    box-shadow:
        0 25px 70px rgba(25, 57, 99, 0.12);

    transform: rotate(1deg);
}


/* TOP */

.visual-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.visual-top span {
    display: block;
    margin-bottom: 5px;

    color: #8a94a6;
    font-size: 10px;
}

.visual-top strong {
    color: #172033;
    font-size: 16px;
}

.growth-badge {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 7px 10px;

    color: #16834b;
    background: #ecfdf3;

    border-radius: 5px;

    font-size: 10px;
    font-weight: 600;
}


/* =========================================
   CHART
========================================= */

.growth-chart {
    display: flex;
    height: 190px;
    margin-bottom: 25px;
}

.chart-labels {
    width: 40px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 4px 0;

    color: #a0a8b5;
    font-size: 9px;
}

.chart-area {
    position: relative;
    flex: 1;

    border-left: 1px solid #e8edf4;
    border-bottom: 1px solid #e8edf4;

    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 37px,
            #eef2f7 38px
        );
}


/* GROWTH LINE */

.chart-line {
    position: absolute;

    left: 7%;
    bottom: 20%;

    width: 85%;
    height: 70%;

    border-top: 3px solid #1e5eff;

    transform: skewY(-22deg) rotate(-2deg);

    border-radius: 50%;
}

.chart-line:after {
    content: "";

    position: absolute;

    right: -2px;
    top: -8px;

    width: 13px;
    height: 13px;

    background: #1e5eff;

    border: 3px solid #ffffff;

    border-radius: 50%;

    box-shadow: 0 3px 10px rgba(30,94,255,0.25);
}


/* CHART POINTS */

.chart-point {
    position: absolute;

    width: 8px;
    height: 8px;

    background: #1e5eff;

    border: 2px solid #ffffff;

    border-radius: 50%;
}

.point-1 {
    left: 12%;
    bottom: 22%;
}

.point-2 {
    left: 31%;
    bottom: 34%;
}

.point-3 {
    left: 50%;
    bottom: 45%;
}

.point-4 {
    left: 69%;
    bottom: 59%;
}

.point-5 {
    right: 6%;
    bottom: 76%;
}


/* =========================================
   METRICS
========================================= */

.visual-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.visual-metric {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 11px 8px;

    background: #f7f9fc;

    border-radius: 8px;
}

.visual-metric small {
    display: block;

    margin-bottom: 3px;

    color: #98a1b2;
    font-size: 7px;
}

.visual-metric strong {
    display: block;

    color: #172033;
    font-size: 9px;
}

.metric-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    border-radius: 7px;

    font-size: 11px;
}

.seo-icon {
    color: #1e5eff;
    background: #eaf1ff;
}

.ads-icon {
    color: #f5a623;
    background: #fff6e5;
}

.social-icon {
    color: #8b5cf6;
    background: #f2edff;
}


/* =========================================
   DUBAI LOCATION CARD
========================================= */

.dubai-location-card {
    position: absolute;

    top: 65px;
    left: -10px;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 13px 16px;

    background: #ffffff;

    border: 1px solid #e5eaf1;

    border-radius: 10px;

    box-shadow: 0 15px 35px rgba(25,57,99,0.12);

    z-index: 4;
}

.location-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 37px;
    height: 37px;

    color: #ffffff;
    background: #1e5eff;

    border-radius: 8px;

    font-size: 13px;
}

.dubai-location-card small,
.dubai-leads-card small {
    display: block;

    margin-bottom: 3px;

    color: #98a1b2;
    font-size: 9px;
}

.dubai-location-card strong,
.dubai-leads-card strong {
    color: #172033;
    font-size: 12px;
}

.location-pulse {
    width: 7px;
    height: 7px;

    margin-left: 4px;

    background: #16a34a;

    border-radius: 50%;
}


/* =========================================
   LEADS CARD
========================================= */

.dubai-leads-card {
    position: absolute;

    right: -10px;
    bottom: 70px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 15px;

    background: #ffffff;

    border: 1px solid #e5eaf1;

    border-radius: 10px;

    box-shadow: 0 15px 35px rgba(25,57,99,0.12);

    z-index: 4;
}

.leads-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    color: #16a34a;
    background: #ecfdf3;

    border-radius: 8px;

    font-size: 13px;
}

.leads-arrow {
    margin-left: 8px;

    color: #16a34a;

    font-size: 12px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .dubai-dm-hero {
        padding: 70px 0 60px;
    }

    .dubai-hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .dubai-hero-content {
        text-align: center;
    }

    .dubai-hero-content h1,
    .dubai-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .dubai-hero-buttons,
    .dubai-hero-trust {
        justify-content: center;
    }

    .dubai-hero-visual {
        max-width: 600px;
        width: 100%;
        margin: auto;
    }

}


@media (max-width: 600px) {

    .dubai-dm-hero {
        padding: 55px 0 40px;
    }

    .dubai-hero-content h1 {
        font-size: 39px;
        line-height: 1.12;
        letter-spacing: -1px;
    }

    .dubai-hero-content > p {
        font-size: 15px;
        line-height: 1.65;
    }

    .dubai-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .dubai-btn-primary,
    .dubai-btn-secondary {
        width: 100%;
    }

    .dubai-hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 9px;
    }

    .dubai-hero-visual {
        min-height: 420px;
        transform: scale(0.85);
        transform-origin: top center;
        margin-bottom: -60px;
    }

    .hero-visual-main {
        width: 430px;
    }

    .dubai-location-card {
        left: 0;
        top: 35px;
    }

    .dubai-leads-card {
        right: 0;
        bottom: 45px;
    }

    .visual-metrics {
        gap: 6px;
    }

}

/* =========================================
   SECTION 2
========================================= */

.dubai-intro-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #f7f9fc;
}

.dubai-intro-section .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.dubai-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
    gap: 80px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.dubai-intro-content {
    max-width: 650px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 17px;

    color: #1e5eff;

    font-size: 13px;
    font-weight: 600;
}

.section-tag i {
    font-size: 13px;
}

.dubai-intro-content h2 {
    margin: 0 0 22px;

    color: #172033;

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.16;
    font-weight: 700;

    letter-spacing: -1.2px;
}

.dubai-intro-content h2 span {
    display: block;
    color: #1e5eff;
}

.dubai-intro-content p {
    margin: 0 0 16px;

    color: #667085;

    font-size: 15px;
    line-height: 1.8;
}

.dubai-intro-content .intro-lead {
    color: #475467;
    font-size: 16px;
    line-height: 1.8;
}

.dubai-intro-content strong {
    color: #172033;
    font-weight: 600;
}


/* =========================================
   LINK
========================================= */

.intro-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 12px;

    color: #1e5eff !important;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.3s ease;
}

.intro-link i {
    transition: transform 0.3s ease;
}

.intro-link:hover {
    color: #124bd6 !important;
}

.intro-link:hover i {
    transform: translateX(5px);
}


/* =========================================
   RIGHT VISUAL
========================================= */

.dubai-intro-visual {
    position: relative;
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   MAIN CARD
========================================= */

.intro-card-main {
    position: relative;

    width: 100%;
    max-width: 450px;

    padding: 28px;

    background: #ffffff;

    border: 1px solid #e4eaf2;

    border-radius: 16px;

    box-shadow: 0 25px 60px rgba(25,57,99,0.10);
}


/* CARD HEADING */

.intro-card-heading {
    display: flex;
    align-items: center;
    gap: 13px;

    padding-bottom: 22px;
    margin-bottom: 10px;

    border-bottom: 1px solid #edf0f5;
}

.intro-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    color: #1e5eff;
    background: #eef5ff;

    border-radius: 10px;

    font-size: 17px;
}

.intro-card-heading small {
    display: block;

    margin-bottom: 4px;

    color: #98a1b2;
    font-size: 10px;
}

.intro-card-heading strong {
    color: #172033;
    font-size: 16px;
}


/* =========================================
   GROWTH ITEMS
========================================= */

.intro-growth-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 16px 0;

    border-bottom: 1px solid #f0f2f5;
}

.growth-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    color: #1e5eff;
    background: #eef5ff;

    border-radius: 8px;

    font-size: 12px;
}

.growth-item-icon.orange {
    color: #e99a17;
    background: #fff6e5;
}

.growth-item-icon.purple {
    color: #8b5cf6;
    background: #f2edff;
}

.growth-item-icon.green {
    color: #16a34a;
    background: #ecfdf3;
}

.growth-item-content {
    flex: 1;
}

.growth-item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 8px;
}

.growth-item-title span {
    color: #667085;
    font-size: 11px;
}

.growth-item-title strong {
    color: #172033;
    font-size: 11px;
}


/* PROGRESS */

.growth-progress {
    width: 100%;
    height: 5px;

    overflow: hidden;

    background: #edf1f6;

    border-radius: 20px;
}

.growth-progress span {
    display: block;
    height: 100%;

    background: #1e5eff;

    border-radius: 20px;
}


/* =========================================
   RESULT
========================================= */

.intro-result {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 20px;
    padding: 15px;

    background: #f7f9fc;

    border-radius: 9px;
}

.intro-result small {
    display: block;

    margin-bottom: 4px;

    color: #98a1b2;

    font-size: 9px;
}

.intro-result strong {
    color: #172033;

    font-size: 12px;
}

.result-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    color: #1e5eff;
    background: #eef5ff;

    border-radius: 8px;

    font-size: 12px;
}


/* =========================================
   FLOATING CARD
========================================= */

.intro-floating-card {
    position: absolute;

    left: 0;
    bottom: 45px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 16px;

    background: #ffffff;

    border: 1px solid #e5eaf1;

    border-radius: 10px;

    box-shadow: 0 15px 35px rgba(25,57,99,0.12);

    z-index: 3;
}

.floating-check {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    color: #ffffff;
    background: #1e5eff;

    border-radius: 8px;

    font-size: 12px;
}

.intro-floating-card strong {
    display: block;

    margin-bottom: 3px;

    color: #172033;

    font-size: 12px;
}

.intro-floating-card small {
    color: #98a1b2;

    font-size: 9px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .dubai-intro-section {
        padding: 75px 0;
    }

    .dubai-intro-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .dubai-intro-content {
        max-width: 750px;
        margin: auto;
        text-align: center;
    }

    .section-tag {
        justify-content: center;
    }

    .dubai-intro-visual {
        max-width: 520px;
        width: 100%;
        margin: auto;
    }

}


@media (max-width: 600px) {

    .dubai-intro-section {
        padding: 60px 0;
    }

    .dubai-intro-content h2 {
        font-size: 34px;
    }

    .dubai-intro-content p {
        font-size: 14px;
    }

    .intro-card-main {
        padding: 20px;
    }

    .dubai-intro-visual {
        min-height: 450px;
    }

    .intro-floating-card {
        left: 0;
        bottom: 25px;
    }

}

/* =========================================
   SECTION 3
========================================= */

.dubai-services-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
}

.dubai-services-section .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================
   HEADER
========================================= */

.dubai-services-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.dubai-services-header .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 15px;

    color: #1e5eff;

    font-size: 13px;
    font-weight: 600;
}

.dubai-services-header h2 {
    margin: 0 0 18px;

    color: #172033;

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -1.2px;
}

.dubai-services-header h2 span {
    display: block;
    color: #1e5eff;
}

.dubai-services-header > p {
    margin: 0;

    color: #667085;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   SERVICES GRID
========================================= */

.dubai-services-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


/* =========================================
   SERVICE CARD
========================================= */

.dubai-service-card {
    position: relative;

    padding: 28px 25px 25px;

    background: #ffffff;

    border: 1px solid #e5eaf1;

    border-radius: 12px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.dubai-service-card:before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background: #1e5eff;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.3s ease;
}

.dubai-service-card:hover {
    transform: translateY(-6px);

    border-color: #d5e2ff;

    box-shadow: 0 18px 45px rgba(25,57,99,0.09);
}

.dubai-service-card:hover:before {
    transform: scaleX(1);
}


/* =========================================
   CARD TOP
========================================= */

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 22px;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    color: #1e5eff;

    background: #eef5ff;

    border-radius: 10px;

    font-size: 17px;

    transition: all 0.3s ease;
}

.dubai-service-card:hover .service-icon {
    color: #ffffff;
    background: #1e5eff;
}

.service-number {
    color: #c5ccd7;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================
   CARD CONTENT
========================================= */

.dubai-service-card h3 {
    margin: 0 0 12px;

    color: #172033;

    font-size: 19px;
    line-height: 1.3;
    font-weight: 650;
}

.dubai-service-card p {
    min-height: 105px;

    margin: 0 0 20px;

    color: #667085;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   SERVICE LINK
========================================= */

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #1e5eff !important;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.3s ease;
}

.service-link i {
    font-size: 10px;

    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #124bd6 !important;
}

.service-link:hover i {
    transform: translateX(5px);
}


/* =========================================
   BOTTOM CTA
========================================= */

.dubai-services-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    margin-top: 45px;
    padding-top: 30px;

    border-top: 1px solid #edf0f4;
}

.dubai-services-bottom p {
    margin: 0;

    color: #667085;

    font-size: 13px;
}

.dubai-services-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #1e5eff !important;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none !important;
}

.dubai-services-bottom a i {
    transition: transform 0.3s ease;
}

.dubai-services-bottom a:hover i {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

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

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .dubai-services-section {
        padding: 65px 0;
    }

    .dubai-services-header {
        margin-bottom: 35px;
    }

    .dubai-services-header h2 {
        font-size: 34px;
    }

    .dubai-services-header > p {
        font-size: 14px;
    }

    .dubai-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .dubai-service-card {
        padding: 24px 21px;
    }

    .dubai-service-card p {
        min-height: auto;
    }

    .dubai-services-bottom {
        flex-direction: column;
        gap: 10px;

        text-align: center;
    }

}


/* =========================================
   SECTION 4
========================================= */

.dubai-market-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #eef5ff;
}

.dubai-market-section .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================
   HEADER
========================================= */

.dubai-market-header {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.dubai-market-header .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 16px;

    color: #1e5eff;

    font-size: 13px;
    font-weight: 600;
}

.dubai-market-header h2 {
    margin: 0 0 18px;

    color: #172033;

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -1.2px;
}

.dubai-market-header h2 span {
    display: block;
    color: #1e5eff;
}

.dubai-market-header p {
    margin: 0;

    color: #667085;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   MAIN GRID
========================================= */

.dubai-market-grid {
    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 80px;

    align-items: center;
}


/* =========================================
   MARKET POINTS
========================================= */

.dubai-market-points {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.market-point {
    display: flex;
    gap: 20px;

    padding: 24px 0;

    border-bottom: 1px solid rgba(23,32,51,0.10);
}

.market-point:first-child {
    padding-top: 0;
}

.market-point:last-child {
    border-bottom: 0;
}


.market-point-number {
    width: 34px;
    padding-top: 4px;

    color: #9aa7bb;

    font-size: 11px;
    font-weight: 700;
}


/* CONTENT */

.market-point-content {
    display: flex;
    gap: 15px;

    flex: 1;
}

.market-point-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    color: #1e5eff;
    background: #ffffff;

    border: 1px solid #dce7f8;

    border-radius: 9px;

    font-size: 14px;

    box-shadow: 0 5px 15px rgba(25,57,99,0.04);
}

.market-point h3 {
    margin: 0 0 8px;

    color: #172033;

    font-size: 17px;
    line-height: 1.35;
    font-weight: 650;
}

.market-point p {
    max-width: 520px;

    margin: 0;

    color: #667085;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   RIGHT VISUAL
========================================= */

.dubai-market-visual {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   VISUAL CARD
========================================= */

.market-visual-card {
    position: relative;

    width: 100%;
    max-width: 470px;

    padding: 28px;

    background: #ffffff;

    border: 1px solid #dfe7f2;

    border-radius: 18px;

    box-shadow: 0 25px 65px rgba(25,57,99,0.10);
}


/* TOP */

.market-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom: 1px solid #edf0f5;
}

.market-card-top span {
    display: block;

    margin-bottom: 4px;

    color: #98a1b2;

    font-size: 9px;
}

.market-card-top strong {
    color: #172033;

    font-size: 16px;
}

.market-card-location {
    display: flex;
    align-items: center;
    gap: 5px;

    padding: 7px 10px;

    color: #1e5eff;
    background: #eef5ff;

    border-radius: 5px;

    font-size: 9px;
    font-weight: 600;
}


/* =========================================
   GROWTH AREA
========================================= */

.market-growth-area {
    position: relative;

    height: 270px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.market-growth-circle {
    position: relative;

    width: 150px;
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef5ff;

    border: 1px solid #cddfff;

    border-radius: 50%;

    z-index: 3;
}

.growth-circle-inner {
    width: 112px;
    height: 112px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 50%;

    box-shadow: 0 10px 25px rgba(30,94,255,0.10);
}

.growth-circle-inner i {
    margin-bottom: 8px;

    color: #1e5eff;

    font-size: 20px;
}

.growth-circle-inner strong {
    color: #172033;

    font-size: 15px;
}

.growth-circle-inner span {
    margin-top: 3px;

    color: #98a1b2;

    font-size: 9px;
}


/* ORBITS */

.orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    border: 1px dashed #cbdaf1;

    border-radius: 50%;

    transform: translate(-50%, -50%);
}

.orbit-one {
    width: 230px;
    height: 230px;
}

.orbit-two {
    width: 315px;
    height: 315px;
}


/* =========================================
   CHANNELS
========================================= */

.market-channel-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 8px;
}

.market-channel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 72px;

    background: #f7f9fc;

    border: 1px solid #edf0f4;

    border-radius: 8px;

    color: #667085;

    font-size: 9px;

    transition: all 0.3s ease;
}

.market-channel i {
    color: #1e5eff;

    font-size: 14px;
}

.market-channel:hover {
    background: #eef5ff;

    border-color: #d6e4ff;
}


/* =========================================
   FLOATING CARD
========================================= */

.market-floating-card {
    position: absolute;

    left: -20px;
    bottom: 50px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 16px;

    background: #ffffff;

    border: 1px solid #e3e9f2;

    border-radius: 10px;

    box-shadow: 0 15px 35px rgba(25,57,99,0.12);

    z-index: 4;
}

.floating-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    color: #ffffff;

    background: #1e5eff;

    border-radius: 8px;

    font-size: 11px;
}

.market-floating-card small {
    display: block;

    margin-bottom: 3px;

    color: #98a1b2;

    font-size: 9px;
}

.market-floating-card strong {
    color: #172033;

    font-size: 11px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .dubai-market-section {
        padding: 75px 0;
    }

    .dubai-market-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .dubai-market-points {
        max-width: 750px;
        margin: 0 auto;
    }

    .dubai-market-visual {
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .dubai-market-section {
        padding: 60px 0;
    }

    .dubai-market-header {
        margin-bottom: 40px;
    }

    .dubai-market-header h2 {
        font-size: 34px;
    }

    .dubai-market-header p {
        font-size: 14px;
    }

    .market-point {
        gap: 10px;
        padding: 20px 0;
    }

    .market-point-number {
        display: none;
    }

    .market-point-content {
        gap: 12px;
    }

    .market-point-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .market-point h3 {
        font-size: 15px;
    }

    .market-point p {
        font-size: 12px;
    }

    .market-visual-card {
        padding: 20px;
    }

    .market-growth-area {
        height: 235px;
    }

    .market-growth-circle {
        width: 125px;
        height: 125px;
    }

    .growth-circle-inner {
        width: 95px;
        height: 95px;
    }

    .orbit-one {
        width: 190px;
        height: 190px;
    }

    .orbit-two {
        width: 260px;
        height: 260px;
    }

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

    .market-floating-card {
        left: 0;
        bottom: 25px;
    }

}

/* =========================================
   SECTION 5
========================================= */

.dubai-process-section {
    position: relative;

    padding: 100px 0;

    background: #ffffff;

    overflow: hidden;
}

.dubai-process-section .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================
   HEADER
========================================= */

.dubai-process-header {
    max-width: 760px;

    margin: 0 auto 65px;

    text-align: center;
}

.dubai-process-header .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 16px;

    color: #1e5eff;

    font-size: 13px;
    font-weight: 600;
}

.dubai-process-header h2 {
    margin: 0 0 18px;

    color: #172033;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -1.2px;
}

.dubai-process-header h2 span {
    display: block;

    color: #1e5eff;
}

.dubai-process-header p {
    margin: 0;

    color: #667085;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   PROCESS WRAPPER
========================================= */

.dubai-process-wrapper {
    position: relative;
}


/* =========================================
   CONNECTING LINE
========================================= */

.process-line {
    position: absolute;

    top: 47px;
    left: 10%;

    width: 80%;
    height: 2px;

    background: #dce6f5;

    z-index: 0;
}

.process-line span {
    display: block;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        90deg,
        #1e5eff 0%,
        #6d9aff 50%,
        #1e5eff 100%
    );

    opacity: 0.18;
}


/* =========================================
   PROCESS GRID
========================================= */

.dubai-process-grid {
    position: relative;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 18px;

    z-index: 2;
}


/* =========================================
   PROCESS CARD
========================================= */

.dubai-process-card {
    position: relative;

    padding: 0 13px 10px;

    text-align: center;
}


/* NUMBER */

.process-number {
    position: absolute;

    top: -3px;
    right: 12px;

    color: #dce4ef;

    font-size: 11px;

    font-weight: 700;
}


/* ICON */

.process-icon {
    position: relative;

    width: 94px;
    height: 94px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    color: #1e5eff;

    background: #ffffff;

    border: 1px solid #d8e4f5;

    border-radius: 50%;

    box-shadow:
        0 0 0 8px #ffffff,
        0 10px 30px rgba(25,57,99,0.08);

    font-size: 22px;

    transition: all 0.3s ease;
}

.dubai-process-card:hover .process-icon {
    color: #ffffff;

    background: #1e5eff;

    border-color: #1e5eff;

    transform: translateY(-5px);

    box-shadow:
        0 0 0 8px #ffffff,
        0 15px 35px rgba(30,94,255,0.20);
}


/* LABEL */

.process-label {
    display: inline-block;

    margin-bottom: 7px;

    color: #1e5eff;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.4px;
}


/* TITLE */

.dubai-process-card h3 {
    margin: 0 0 10px;

    color: #172033;

    font-size: 17px;

    line-height: 1.35;

    font-weight: 650;
}


/* DESCRIPTION */

.dubai-process-card p {
    margin: 0;

    color: #667085;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================
   BOTTOM CTA STRIP
========================================= */

.dubai-process-bottom {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 65px;

    padding: 22px 25px;

    background: #f7f9fc;

    border: 1px solid #e5eaf1;

    border-radius: 10px;
}

.process-bottom-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    color: #1e5eff;

    background: #eef5ff;

    border-radius: 9px;

    font-size: 15px;
}

.process-bottom-content {
    flex: 1;
}

.process-bottom-content strong {
    display: block;

    margin-bottom: 4px;

    color: #172033;

    font-size: 13px;
}

.process-bottom-content span {
    display: block;

    color: #667085;

    font-size: 11px;

    line-height: 1.5;
}

.process-bottom-btn {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 11px 17px;

    color: #ffffff !important;

    background: #1e5eff;

    border: 1px solid #1e5eff;

    border-radius: 6px;

    white-space: nowrap;

    font-size: 11px;

    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.3s ease;
}

.process-bottom-btn:hover {
    color: #ffffff !important;

    background: #124bd6;

    border-color: #124bd6;
}

.process-bottom-btn i {
    transition: transform 0.3s ease;
}

.process-bottom-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .dubai-process-grid {
        grid-template-columns: repeat(3, 1fr);

        row-gap: 45px;
    }

    .process-line {
        display: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .dubai-process-section {
        padding: 65px 0;
    }

    .dubai-process-header {
        margin-bottom: 40px;
    }

    .dubai-process-header h2 {
        font-size: 34px;
    }

    .dubai-process-header p {
        font-size: 14px;
    }

    .dubai-process-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .dubai-process-card {
        padding: 0 20px;
    }

    .process-number {
        right: 20px;
    }

    .process-icon {
        width: 80px;
        height: 80px;

        margin-bottom: 15px;

        font-size: 19px;
    }

    .dubai-process-card h3 {
        font-size: 16px;
    }

    .dubai-process-card p {
        max-width: 420px;

        margin: 0 auto;

        font-size: 12px;
    }

    .dubai-process-bottom {
        flex-wrap: wrap;

        margin-top: 45px;
        padding: 18px;
    }

    .process-bottom-content {
        min-width: calc(100% - 65px);
    }

    .process-bottom-btn {
        width: 100%;

        justify-content: center;
    }

}

/* =========================================
   SECTION 6
========================================= */

.dubai-why-section {
    position: relative;

    padding: 100px 0;

    background: #f7f9fc;

    overflow: hidden;
}

.dubai-why-section .container {
    max-width: 1240px;

    margin: 0 auto;

    padding: 0 20px;
}


/* =========================================
   HEADER
========================================= */

.dubai-why-header {
    max-width: 760px;

    margin: 0 auto 60px;

    text-align: center;
}

.dubai-why-header .section-tag {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 16px;

    color: #1e5eff;

    font-size: 13px;

    font-weight: 600;
}

.dubai-why-header h2 {
    margin: 0 0 18px;

    color: #172033;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -1.2px;
}

.dubai-why-header h2 span {
    display: block;

    color: #1e5eff;
}

.dubai-why-header p {
    margin: 0;

    color: #667085;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   MAIN GRID
========================================= */

.dubai-why-grid {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 25px;

    align-items: stretch;
}


/* =========================================
   FEATURE CARD
========================================= */

.dubai-why-feature {
    position: relative;

    padding: 35px;

    background: #172033;

    border-radius: 14px;

    overflow: hidden;

    color: #ffffff;
}

.dubai-why-feature:before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -120px;
    top: -120px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;
}

.dubai-why-feature:after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    top: -80px;

    border: 1px solid rgba(30,94,255,0.35);

    border-radius: 50%;
}


/* FEATURE TOP */

.why-feature-top {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 35px;

    z-index: 2;
}

.why-feature-top > span {
    color: rgba(255,255,255,0.25);

    font-size: 12px;

    font-weight: 700;
}

.why-feature-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 52px;
    height: 52px;

    color: #ffffff;

    background: #1e5eff;

    border-radius: 10px;

    font-size: 18px;
}


/* FEATURE CONTENT */

.dubai-why-feature h3 {
    position: relative;

    max-width: 360px;

    margin: 0 0 18px;

    color: #ffffff;

    font-size: 27px;

    line-height: 1.25;

    font-weight: 600;

    z-index: 2;
}

.dubai-why-feature h3 strong {
    display: block;

    color: #77a0ff;

    font-weight: 600;
}

.dubai-why-feature > p {
    position: relative;

    max-width: 390px;

    margin: 0 0 28px;

    color: rgba(255,255,255,0.63);

    font-size: 13px;

    line-height: 1.75;

    z-index: 2;
}


/* FEATURE POINTS */

.why-feature-points {
    position: relative;

    display: flex;

    flex-direction: column;

    gap: 11px;

    z-index: 2;
}

.why-feature-points div {
    display: flex;

    align-items: center;

    gap: 9px;

    color: rgba(255,255,255,0.72);

    font-size: 11px;
}

.why-feature-points i {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 18px;
    height: 18px;

    color: #ffffff;

    background: rgba(30,94,255,0.75);

    border-radius: 50%;

    font-size: 8px;
}


/* =========================================
   SMALL CARDS
========================================= */

.dubai-why-cards {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.why-small-card {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #e5eaf1;

    border-radius: 11px;

    transition: all 0.3s ease;
}

.why-small-card:hover {
    border-color: #d3e0f7;

    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(25,57,99,0.07);
}


/* ICON */

.why-small-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    color: #1e5eff;

    background: #eef5ff;

    border-radius: 9px;

    font-size: 14px;
}

.why-small-icon.blue {
    color: #2563eb;

    background: #eff6ff;
}

.why-small-icon.orange {
    color: #e99a17;

    background: #fff6e5;
}

.why-small-icon.green {
    color: #16a34a;

    background: #ecfdf3;
}


/* CONTENT */

.why-small-card h3 {
    margin: 0 0 7px;

    color: #172033;

    font-size: 15px;

    line-height: 1.35;

    font-weight: 650;
}

.why-small-card p {
    margin: 0;

    color: #667085;

    font-size: 11px;

    line-height: 1.65;
}


/* =========================================
   STATS
========================================= */

.dubai-why-stats {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 42px;

    margin-top: 55px;

    padding: 25px 35px;

    background: #ffffff;

    border: 1px solid #e5eaf1;

    border-radius: 11px;

    box-shadow: 0 10px 30px rgba(25,57,99,0.04);
}

.why-stat {
    display: flex;

    align-items: center;

    gap: 12px;
}

.why-stat strong {
    color: #1e5eff;

    font-size: 29px;

    line-height: 1;

    font-weight: 700;
}

.why-stat span {
    color: #667085;

    font-size: 10px;

    line-height: 1.4;
}

.why-stat-divider {
    width: 1px;

    height: 35px;

    background: #e5eaf1;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .dubai-why-grid {
        grid-template-columns: 1fr;
    }

    .dubai-why-feature {
        min-height: auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .dubai-why-section {
        padding: 65px 0;
    }

    .dubai-why-header {
        margin-bottom: 40px;
    }

    .dubai-why-header h2 {
        font-size: 34px;
    }

    .dubai-why-header p {
        font-size: 14px;
    }

    .dubai-why-feature {
        padding: 27px;
    }

    .dubai-why-feature h3 {
        font-size: 23px;
    }

    .dubai-why-cards {
        grid-template-columns: 1fr;
    }

    .why-small-card {
        padding: 21px;
    }

    .dubai-why-stats {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;

        padding: 22px;
    }

    .why-stat-divider {
        display: none;
    }

    .why-stat strong {
        font-size: 24px;
    }

}

/* =========================================
   SECTION 7
========================================= */

.dubai-industries-section {
    position: relative;

    padding: 100px 0;

    background: #ffffff;

    overflow: hidden;
}

.dubai-industries-section .container {
    max-width: 1240px;

    margin: 0 auto;

    padding: 0 20px;
}


/* =========================================
   HEADER
========================================= */

.dubai-industries-header {
    max-width: 780px;

    margin: 0 auto 55px;

    text-align: center;
}

.dubai-industries-header .section-tag {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 16px;

    color: #1e5eff;

    font-size: 13px;

    font-weight: 600;
}

.dubai-industries-header h2 {
    margin: 0 0 18px;

    color: #172033;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -1.2px;
}

.dubai-industries-header h2 span {
    display: block;

    color: #1e5eff;
}

.dubai-industries-header p {
    margin: 0;

    color: #667085;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   GRID
========================================= */

.dubai-industries-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* =========================================
   CARD
========================================= */

.dubai-industry-card {
    position: relative;

    background: #ffffff;

    border: 1px solid #e5eaf1;

    border-radius: 11px;

    overflow: hidden;

    transition: all 0.3s ease;
}

.dubai-industry-card:hover {
    transform: translateY(-6px);

    border-color: #d4e1f7;

    box-shadow: 0 18px 45px rgba(25,57,99,0.09);
}


/* =========================================
   IMAGE / VISUAL
========================================= */

.industry-image {
    position: relative;

    height: 125px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    color: #1e5eff;

    background: #eef5ff;

    font-size: 32px;
}

.industry-image:before {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    border: 1px solid rgba(30,94,255,0.10);

    border-radius: 50%;
}

.industry-image:after {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    border: 1px solid rgba(30,94,255,0.07);

    border-radius: 50%;
}

.industry-image i {
    position: relative;

    z-index: 2;
}


/* NUMBER */

.industry-image span {
    position: absolute;

    right: 13px;
    top: 12px;

    color: rgba(30,94,255,0.35);

    font-size: 10px;

    font-weight: 700;

    z-index: 3;
}


/* =========================================
   INDUSTRY VARIATIONS
========================================= */

.industry-hospitality {
    color: #8b5cf6;

    background: #f4f0ff;
}

.industry-hospitality:before,
.industry-hospitality:after {
    border-color: rgba(139,92,246,0.10);
}

.industry-healthcare {
    color: #16a34a;

    background: #effbf4;
}

.industry-healthcare:before,
.industry-healthcare:after {
    border-color: rgba(22,163,74,0.10);
}

.industry-restaurant {
    color: #e99a17;

    background: #fff7e9;
}

.industry-restaurant:before,
.industry-restaurant:after {
    border-color: rgba(233,154,23,0.10);
}

.industry-retail {
    color: #ec4899;

    background: #fff0f7;
}

.industry-retail:before,
.industry-retail:after {
    border-color: rgba(236,72,153,0.10);
}

.industry-b2b {
    color: #2563eb;

    background: #eff6ff;
}

.industry-professional {
    color: #0f766e;

    background: #eefbf9;
}

.industry-education {
    color: #7c3aed;

    background: #f5f1ff;
}


/* =========================================
   CONTENT
========================================= */

.industry-content {
    padding: 21px;
}

.industry-content h3 {
    margin: 0 0 9px;

    color: #172033;

    font-size: 17px;

    line-height: 1.35;

    font-weight: 650;
}

.industry-content p {
    min-height: 78px;

    margin: 0 0 17px;

    color: #667085;

    font-size: 11px;

    line-height: 1.7;
}


/* LINK */

.industry-content a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #1e5eff !important;

    font-size: 11px;

    font-weight: 600;

    text-decoration: none !important;
}

.industry-content a i {
    font-size: 9px;

    transition: transform 0.3s ease;
}

.industry-content a:hover i {
    transform: translateX(5px);
}


/* =========================================
   BOTTOM
========================================= */

.dubai-industries-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 35px;

    padding: 20px 24px;

    background: #f7f9fc;

    border: 1px solid #e5eaf1;

    border-radius: 10px;
}

.industries-bottom-text strong {
    display: block;

    margin-bottom: 4px;

    color: #172033;

    font-size: 13px;
}

.industries-bottom-text span {
    color: #667085;

    font-size: 11px;
}

.dubai-industries-bottom > a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 11px 17px;

    color: #ffffff !important;

    background: #1e5eff;

    border-radius: 6px;

    white-space: nowrap;

    font-size: 11px;

    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.3s ease;
}

.dubai-industries-bottom > a:hover {
    background: #124bd6;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

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

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .dubai-industries-section {
        padding: 65px 0;
    }

    .dubai-industries-header {
        margin-bottom: 40px;
    }

    .dubai-industries-header h2 {
        font-size: 34px;
    }

    .dubai-industries-header p {
        font-size: 14px;
    }

    .dubai-industries-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .industry-image {
        height: 110px;
    }

    .industry-content p {
        min-height: auto;
    }

    .dubai-industries-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

    .dubai-industries-bottom > a {
        width: 100%;

        justify-content: center;
    }

}

/* =========================================
   SECTION 8
========================================= */

.dubai-results-section {
    position: relative;

    padding: 100px 0;

    background: #eef5ff;

    overflow: hidden;
}

.dubai-results-section .container {
    max-width: 1240px;

    margin: 0 auto;

    padding: 0 20px;
}


/* =========================================
   HEADER
========================================= */

.dubai-results-header {
    max-width: 780px;

    margin: 0 auto 55px;

    text-align: center;
}

.dubai-results-header .section-tag {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 16px;

    color: #1e5eff;

    font-size: 13px;

    font-weight: 600;
}

.dubai-results-header h2 {
    margin: 0 0 18px;

    color: #172033;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -1.2px;
}

.dubai-results-header h2 span {
    display: block;

    color: #1e5eff;
}

.dubai-results-header p {
    margin: 0;

    color: #667085;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   CASE STUDY GRID
========================================= */

.dubai-case-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* =========================================
   CASE CARD
========================================= */

.dubai-case-card {
    position: relative;

    display: flex;

    flex-direction: column;

    padding: 27px;

    background: #ffffff;

    border: 1px solid #dfe7f2;

    border-radius: 13px;

    overflow: hidden;

    transition: all 0.3s ease;
}

.dubai-case-card:hover {
    transform: translateY(-6px);

    border-color: #cbdcff;

    box-shadow: 0 20px 45px rgba(25,57,99,0.09);
}


/* =========================================
   CARD HEADER
========================================= */

.case-card-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 20px;

    margin-bottom: 22px;

    border-bottom: 1px solid #edf0f5;
}

.case-industry {
    display: flex;

    align-items: center;

    gap: 11px;
}

.case-industry-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;
    height: 42px;

    color: #ffffff;

    background: #1e5eff;

    border-radius: 8px;

    font-size: 13px;
}

.case-industry-icon.blue {
    color: #1e5eff;

    background: #eef5ff;
}

.case-industry-icon.green {
    color: #16a34a;

    background: #ecfdf3;
}

.case-industry small {
    display: block;

    margin-bottom: 3px;

    color: #98a1b2;

    font-size: 9px;
}

.case-industry strong {
    display: block;

    color: #172033;

    font-size: 13px;
}

.case-number {
    color: #c6cfdb;

    font-size: 11px;

    font-weight: 700;
}


/* =========================================
   CARD CONTENT
========================================= */

.case-card-content {
    flex: 1;
}

.case-card-content h3 {
    margin: 0 0 12px;

    color: #172033;

    font-size: 18px;

    line-height: 1.4;

    font-weight: 650;
}

.case-card-content p {
    margin: 0;

    color: #667085;

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================
   RESULTS
========================================= */

.case-results {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 7px;

    margin-top: 25px;
}

.case-result {
    padding: 12px 8px;

    background: #f7f9fc;

    border-radius: 7px;

    text-align: center;
}

.case-result strong {
    display: block;

    margin-bottom: 4px;

    color: #1e5eff;

    font-size: 16px;

    line-height: 1;
}

.case-result span {
    display: block;

    color: #98a1b2;

    font-size: 8px;

    line-height: 1.3;
}


/* =========================================
   CASE LINK
========================================= */

.case-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 22px;

    color: #1e5eff !important;

    font-size: 11px;

    font-weight: 600;

    text-decoration: none !important;
}

.case-link i {
    font-size: 9px;

    transition: transform 0.3s ease;
}

.case-link:hover i {
    transform: translateX(5px);
}


/* =========================================
   RESULTS STRIP
========================================= */

.dubai-results-strip {
    display: grid;

    grid-template-columns: 1.1fr repeat(4, 1fr);

    align-items: center;

    gap: 10px;

    margin-top: 35px;

    padding: 20px;

    background: #ffffff;

    border: 1px solid #dfe7f2;

    border-radius: 11px;
}


/* HEADING */

.results-strip-heading {
    padding-right: 15px;
}

.results-strip-heading span {
    display: block;

    margin-bottom: 4px;

    color: #1e5eff;

    font-size: 9px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.results-strip-heading strong {
    color: #172033;

    font-size: 13px;
}


/* ITEMS */

.results-strip-item {
    display: flex;

    align-items: center;

    gap: 9px;

    padding: 8px;

    border-left: 1px solid #edf0f5;
}

.results-strip-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    color: #1e5eff;

    background: #eef5ff;

    border-radius: 7px;

    font-size: 11px;
}

.results-strip-icon.orange {
    color: #e99a17;

    background: #fff6e5;
}

.results-strip-icon.purple {
    color: #8b5cf6;

    background: #f4f0ff;
}

.results-strip-icon.green {
    color: #16a34a;

    background: #ecfdf3;
}

.results-strip-item strong {
    display: block;

    margin-bottom: 3px;

    color: #172033;

    font-size: 10px;
}

.results-strip-item span {
    display: block;

    color: #98a1b2;

    font-size: 8px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .dubai-case-grid {
        grid-template-columns: 1fr;

        max-width: 700px;

        margin: 0 auto;
    }

    .dubai-results-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-strip-heading {
        grid-column: 1 / -1;

        padding-bottom: 8px;
    }

    .results-strip-item {
        border-left: 0;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .dubai-results-section {
        padding: 65px 0;
    }

    .dubai-results-header {
        margin-bottom: 40px;
    }

    .dubai-results-header h2 {
        font-size: 34px;
    }

    .dubai-results-header p {
        font-size: 14px;
    }

    .dubai-case-card {
        padding: 22px;
    }

    .case-card-content h3 {
        font-size: 17px;
    }

    .case-results {
        gap: 5px;
    }

    .case-result {
        padding: 10px 5px;
    }

    .case-result strong {
        font-size: 14px;
    }

    .case-result span {
        font-size: 7px;
    }

    .dubai-results-strip {
        grid-template-columns: 1fr;

        padding: 17px;
    }

    .results-strip-heading {
        grid-column: auto;
    }

    .results-strip-item {
        padding: 10px 0;

        border-top: 1px solid #edf0f5;
    }

}

/* =========================================
   SECTION 9
========================================= */

.dubai-local-seo-section {
    position: relative;

    padding: 100px 0;

    background: #ffffff;

    overflow: hidden;
}

.dubai-local-seo-section .container {
    max-width: 1240px;

    margin: 0 auto;

    padding: 0 20px;
}


/* =========================================
   MAIN GRID
========================================= */

.dubai-local-seo-grid {
    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 80px;

    align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.dubai-local-seo-content {
    max-width: 650px;
}

.dubai-local-seo-content .section-tag {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 16px;

    color: #1e5eff;

    font-size: 13px;

    font-weight: 600;
}

.dubai-local-seo-content h2 {
    margin: 0 0 21px;

    color: #172033;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -1.2px;
}

.dubai-local-seo-content h2 span {
    display: block;

    color: #1e5eff;
}

.dubai-local-seo-content p {
    margin: 0 0 16px;

    color: #667085;

    font-size: 14px;

    line-height: 1.8;
}

.dubai-local-seo-content .local-seo-lead {
    color: #475467;

    font-size: 16px;
}


/* =========================================
   FEATURES
========================================= */

.local-seo-features {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 13px;

    margin-top: 28px;

    margin-bottom: 28px;
}

.local-seo-feature {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    padding: 15px;

    background: #f7f9fc;

    border: 1px solid #e8edf4;

    border-radius: 9px;

    transition: all 0.3s ease;
}

.local-seo-feature:hover {
    background: #eef5ff;

    border-color: #d6e4ff;

    transform: translateY(-3px);
}


/* ICON */

.local-seo-feature-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    color: #1e5eff;

    background: #eef5ff;

    border-radius: 7px;

    font-size: 12px;
}

.local-seo-feature-icon.blue {
    color: #2563eb;

    background: #eff6ff;
}

.local-seo-feature-icon.orange {
    color: #e99a17;

    background: #fff6e5;
}

.local-seo-feature-icon.green {
    color: #16a34a;

    background: #ecfdf3;
}


/* TEXT */

.local-seo-feature h3 {
    margin: 0 0 4px;

    color: #172033;

    font-size: 12px;

    line-height: 1.4;

    font-weight: 650;
}

.local-seo-feature p {
    margin: 0;

    color: #98a1b2;

    font-size: 9px;

    line-height: 1.5;
}


/* =========================================
   CTA
========================================= */

.local-seo-btn {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 12px 19px;

    color: #ffffff !important;

    background: #1e5eff;

    border: 1px solid #1e5eff;

    border-radius: 6px;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.3s ease;
}

.local-seo-btn:hover {
    color: #ffffff !important;

    background: #124bd6;

    border-color: #124bd6;

    transform: translateY(-2px);
}

.local-seo-btn i {
    transition: transform 0.3s ease;
}

.local-seo-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   RIGHT VISUAL
========================================= */

.dubai-local-seo-visual {
    position: relative;

    min-height: 540px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================
   MAP CARD
========================================= */

.local-map-card {
    position: relative;

    width: 100%;

    max-width: 455px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #dfe7f2;

    border-radius: 16px;

    box-shadow: 0 25px 65px rgba(25,57,99,0.10);

    z-index: 2;
}


/* HEADER */

.local-map-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 18px;

    border-bottom: 1px solid #edf0f5;
}

.local-map-header small {
    display: block;

    margin-bottom: 4px;

    color: #98a1b2;

    font-size: 9px;
}

.local-map-header strong {
    color: #172033;

    font-size: 15px;
}

.map-header-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;
    height: 38px;

    color: #1e5eff;

    background: #eef5ff;

    border-radius: 8px;

    font-size: 13px;
}


/* =========================================
   MAP
========================================= */

.local-map {
    position: relative;

    height: 250px;

    margin: 18px 0;

    overflow: hidden;

    background:
        linear-gradient(
            35deg,
            transparent 46%,
            #dce8f7 47%,
            #dce8f7 48%,
            transparent 49%
        ),
        linear-gradient(
            120deg,
            transparent 45%,
            #e5edf7 46%,
            #e5edf7 47%,
            transparent 48%
        ),
        #f5f8fc;

    border: 1px solid #e5eaf1;

    border-radius: 10px;
}


/* MAP GRID */

.map-grid {
    position: absolute;

    inset: 0;

    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 44px,
            rgba(30,94,255,0.04) 45px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0,
            transparent 42px,
            rgba(30,94,255,0.04) 43px
        );
}


/* ROUTES */

.map-route {
    position: absolute;

    height: 3px;

    background: #d5e2f5;

    border-radius: 10px;

    transform-origin: left center;
}

.route-one {
    width: 310px;

    left: 25px;
    top: 125px;

    transform: rotate(-15deg);
}

.route-two {
    width: 280px;

    left: 115px;
    top: 195px;

    transform: rotate(-32deg);
}


/* PINS */

.map-pin {
    position: absolute;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 28px;
    height: 28px;

    color: #ffffff;

    background: #1e5eff;

    border: 3px solid #ffffff;

    border-radius: 50% 50% 50% 0;

    box-shadow: 0 5px 12px rgba(30,94,255,0.25);

    transform: rotate(-45deg);

    z-index: 3;
}

.map-pin i {
    font-size: 9px;

    transform: rotate(45deg);
}

.pin-one {
    left: 85px;
    top: 75px;
}

.pin-two {
    right: 75px;
    top: 65px;

    color: #ffffff;

    background: #f5a623;
}

.pin-three {
    right: 120px;
    bottom: 45px;

    background: #16a34a;
}


/* CENTER */

.map-center {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 58px;
    height: 58px;

    transform: translate(-50%, -50%);

    z-index: 5;
}

.map-center-pulse {
    position: absolute;

    inset: -18px;

    background: rgba(30,94,255,0.08);

    border-radius: 50%;
}

.map-center-icon {
    position: relative;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    background: #1e5eff;

    border: 4px solid #ffffff;

    border-radius: 50%;

    box-shadow: 0 8px 25px rgba(30,94,255,0.25);

    z-index: 2;

    font-size: 17px;
}


/* =========================================
   SEARCH RESULT
========================================= */

.local-search-result {
    padding: 15px;

    background: #f7f9fc;

    border: 1px solid #e9edf3;

    border-radius: 9px;
}

.search-result-top {
    display: flex;

    align-items: center;

    gap: 10px;
}

.search-result-logo {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 35px;
    height: 35px;

    color: #ffffff;

    background: #1e5eff;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 700;
}

.search-result-top > div:nth-child(2) {
    flex: 1;
}

.search-result-top small {
    display: block;

    margin-bottom: 3px;

    color: #98a1b2;

    font-size: 8px;
}

.search-result-top strong {
    color: #172033;

    font-size: 12px;
}

.verified-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 21px;
    height: 21px;

    color: #ffffff;

    background: #16a34a;

    border-radius: 50%;

    font-size: 8px;
}

.search-result-rating {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 9px;
}

.search-result-rating span {
    color: #f5a623;

    font-size: 10px;

    letter-spacing: 1px;
}

.search-result-rating small {
    color: #98a1b2;

    font-size: 8px;
}


/* =========================================
   FLOATING CARDS
========================================= */

.local-ranking-card {
    position: absolute;

    left: -20px;
    bottom: 70px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 16px;

    background: #ffffff;

    border: 1px solid #e3e9f2;

    border-radius: 10px;

    box-shadow: 0 15px 35px rgba(25,57,99,0.12);

    z-index: 5;
}

.ranking-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 36px;
    height: 36px;

    color: #16a34a;

    background: #ecfdf3;

    border-radius: 8px;

    font-size: 12px;
}

.local-ranking-card small {
    display: block;

    margin-bottom: 3px;

    color: #98a1b2;

    font-size: 8px;
}

.local-ranking-card strong {
    color: #172033;

    font-size: 11px;
}


/* SMALL SEARCH CARD */

.local-search-card {
    position: absolute;

    top: 60px;
    right: -15px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 11px 14px;

    color: #667085;

    background: #ffffff;

    border: 1px solid #e3e9f2;

    border-radius: 8px;

    box-shadow: 0 12px 30px rgba(25,57,99,0.10);

    font-size: 9px;

    z-index: 5;
}

.local-search-card > i {
    color: #1e5eff;

    font-size: 12px;
}

.local-search-card strong {
    color: #1e5eff;

    font-weight: 700;
}


/* =========================================
   CUSTOMER JOURNEY
========================================= */

.local-search-journey {
    display: grid;

    grid-template-columns: 1.2fr repeat(3, 1fr) 1fr;

    align-items: center;

    gap: 10px;

    margin-top: 65px;

    padding: 21px 23px;

    background: #f7f9fc;

    border: 1px solid #e5eaf1;

    border-radius: 10px;
}

.journey-heading span {
    display: block;

    margin-bottom: 4px;

    color: #1e5eff;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;
}

.journey-heading strong {
    color: #172033;

    font-size: 12px;
}

.journey-step {
    display: flex;

    align-items: center;

    gap: 8px;

    padding-left: 12px;

    border-left: 1px solid #e5eaf1;
}

.journey-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    color: #1e5eff;

    background: #eef5ff;

    border-radius: 7px;

    font-size: 10px;
}

.journey-step strong {
    display: block;

    margin-bottom: 2px;

    color: #172033;

    font-size: 10px;
}

.journey-step span {
    display: block;

    color: #98a1b2;

    font-size: 7px;

    line-height: 1.3;
}

.journey-arrow {
    display: none;

    color: #b4c1d4;

    font-size: 10px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .dubai-local-seo-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .dubai-local-seo-content {
        max-width: 760px;

        margin: 0 auto;

        text-align: center;
    }

    .dubai-local-seo-content .section-tag {
        justify-content: center;
    }

    .local-seo-features {
        text-align: left;
    }

    .dubai-local-seo-visual {
        max-width: 520px;

        width: 100%;

        margin: 0 auto;
    }

    .local-search-journey {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-heading {
        grid-column: 1 / -1;

        padding-bottom: 10px;
    }

    .journey-step {
        border-left: 0;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .dubai-local-seo-section {
        padding: 65px 0;
    }

    .dubai-local-seo-content h2 {
        font-size: 34px;
    }

    .dubai-local-seo-content p {
        font-size: 13px;
    }

    .dubai-local-seo-content .local-seo-lead {
        font-size: 14px;
    }

    .local-seo-features {
        grid-template-columns: 1fr;

        text-align: left;
    }

    .local-map-card {
        padding: 18px;
    }

    .local-map {
        height: 220px;
    }

    .local-ranking-card {
        left: 0;

        bottom: 35px;
    }

    .local-search-card {
        right: 0;

        top: 35px;
    }

    .local-search-journey {
        grid-template-columns: 1fr;

        gap: 0;

        margin-top: 45px;

        padding: 18px;
    }

    .journey-heading {
        padding-bottom: 15px;
    }

    .journey-step {
        padding: 12px 0;

        border-top: 1px solid #e5eaf1;
    }

    .journey-arrow {
        display: none;
    }

}

/* =========================================
   SECTION 10 - FAQ
========================================= */

.dubai-faq-section {
    position: relative;

    padding: 100px 0;

    background: #f7f9fc;

    overflow: hidden;
}

.dubai-faq-section .container {
    max-width: 1240px;

    margin: 0 auto;

    padding: 0 20px;
}


/* =========================================
   MAIN GRID
========================================= */

.dubai-faq-grid {
    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    gap: 85px;

    align-items: start;
}


/* =========================================
   LEFT INTRO
========================================= */

.dubai-faq-intro {
    position: sticky;

    top: 100px;

    max-width: 430px;
}

.dubai-faq-intro .section-tag {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 16px;

    color: #1e5eff;

    font-size: 13px;

    font-weight: 600;
}

.dubai-faq-intro h2 {
    margin: 0 0 20px;

    color: #172033;

    font-size: clamp(34px, 4vw, 46px);

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -1.2px;
}

.dubai-faq-intro h2 span {
    display: block;

    color: #1e5eff;
}

.dubai-faq-intro > p {
    margin: 0;

    color: #667085;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   CONTACT CARD
========================================= */

.faq-contact-card {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;

    padding: 15px;

    background: #ffffff;

    border: 1px solid #e4eaf2;

    border-radius: 10px;

    box-shadow: 0 10px 25px rgba(25,57,99,0.04);
}

.faq-contact-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    color: #1e5eff;

    background: #eef5ff;

    border-radius: 8px;

    font-size: 13px;
}

.faq-contact-card div:nth-child(2) {
    flex: 1;
}

.faq-contact-card strong {
    display: block;

    margin-bottom: 3px;

    color: #172033;

    font-size: 11px;
}

.faq-contact-card span {
    display: block;

    color: #98a1b2;

    font-size: 9px;
}

.faq-contact-card a {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 32px;
    height: 32px;

    color: #ffffff !important;

    background: #1e5eff;

    border-radius: 7px;

    font-size: 10px;

    text-decoration: none !important;
}


/* =========================================
   FAQ LIST
========================================= */

.dubai-faq-list {
    border-top: 1px solid #e1e6ed;
}

.dubai-faq-item {
    border-bottom: 1px solid #e1e6ed;
}


/* =========================================
   QUESTION
========================================= */

.faq-question {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 22px 4px;

    color: #172033;

    background: transparent;

    border: 0;

    cursor: pointer;

    text-align: left;

    font-family: inherit;

    font-size: 14px;

    line-height: 1.5;

    font-weight: 600;
}

.faq-question i {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    color: #1e5eff;

    background: #eef5ff;

    border-radius: 50%;

    font-size: 9px;

    transition: all 0.3s ease;
}

.dubai-faq-item:hover .faq-question {
    color: #1e5eff;
}


/* =========================================
   ANSWER
========================================= */

.faq-answer {
    display: none;

    padding: 0 45px 22px 4px;
}

.dubai-faq-item.active .faq-answer {
    display: block;
}

.dubai-faq-item.active .faq-question {
    color: #1e5eff;
}

.dubai-faq-item.active .faq-question i {
    color: #ffffff;

    background: #1e5eff;
}

.faq-answer p {
    margin: 0;

    color: #667085;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .dubai-faq-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .dubai-faq-intro {
        position: static;

        max-width: 700px;

        margin: 0 auto;

        text-align: center;
    }

    .faq-contact-card {
        max-width: 450px;

        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }

}


@media (max-width: 600px) {

    .dubai-faq-section {
        padding: 65px 0;
    }

    .dubai-faq-intro h2 {
        font-size: 34px;
    }

    .dubai-faq-intro > p {
        font-size: 13px;
    }

    .faq-question {
        padding: 18px 0;

        font-size: 13px;
    }

    .faq-answer {
        padding: 0 35px 18px 0;
    }

    .faq-answer p {
        font-size: 11px;
    }

}

/* =========================================
   FINAL CTA
========================================= */

.dubai-final-cta {
    position: relative;

    padding: 95px 0 30px;

    background: #111a2d;

    overflow: hidden;
}

.dubai-final-cta .container {
    position: relative;

    max-width: 1240px;

    margin: 0 auto;

    padding: 0 20px;

    z-index: 2;
}


/* =========================================
   BACKGROUND GLOW
========================================= */

.cta-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(2px);
}

.cta-glow-one {
    width: 450px;
    height: 450px;

    right: -170px;
    top: -180px;

    background: rgba(30,94,255,0.13);
}

.cta-glow-two {
    width: 300px;
    height: 300px;

    left: -150px;
    bottom: -160px;

    background: rgba(30,94,255,0.08);
}


/* =========================================
   MAIN CTA GRID
========================================= */

.dubai-final-cta-inner {
    display: grid;

    grid-template-columns: 1.1fr 0.75fr;

    gap: 80px;

    align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.final-cta-content {
    max-width: 700px;
}

.final-cta-tag {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 17px;

    color: #77a0ff;

    font-size: 12px;

    font-weight: 600;
}

.final-cta-tag i {
    font-size: 11px;
}


.final-cta-content h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -1.5px;
}

.final-cta-content h2 span {
    display: block;

    color: #6f9cff;
}


.final-cta-content > p {
    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,0.62);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   BUTTONS
========================================= */

.final-cta-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;
}

.final-cta-primary,
.final-cta-secondary {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 13px 20px;

    border-radius: 6px;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.3s ease;
}


.final-cta-primary {
    color: #ffffff !important;

    background: #1e5eff;

    border: 1px solid #1e5eff;
}

.final-cta-primary:hover {
    color: #ffffff !important;

    background: #124bd6;

    border-color: #124bd6;

    transform: translateY(-2px);
}

.final-cta-primary i {
    transition: transform 0.3s ease;
}

.final-cta-primary:hover i {
    transform: translateX(5px);
}


.final-cta-secondary {
    color: #ffffff !important;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.18);
}

.final-cta-secondary:hover {
    color: #ffffff !important;

    background: rgba(255,255,255,0.11);

    border-color: rgba(255,255,255,0.3);
}


/* =========================================
   TRUST LINE
========================================= */

.final-cta-trust {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 25px;
}

.final-cta-trust span {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: rgba(255,255,255,0.48);

    font-size: 10px;
}

.final-cta-trust i {
    color: #5d91ff;

    font-size: 8px;
}


/* =========================================
   RIGHT CARD
========================================= */

.final-cta-card {
    position: relative;

    padding: 27px;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 14px;

    backdrop-filter: blur(8px);

    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}


/* TOP */

.final-card-top {
    display: flex;

    align-items: center;

    gap: 12px;
}

.final-card-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    color: #ffffff;

    background: #1e5eff;

    border-radius: 9px;

    font-size: 15px;
}

.final-card-top small {
    display: block;

    margin-bottom: 4px;

    color: rgba(255,255,255,0.40);

    font-size: 8px;
}

.final-card-top strong {
    display: block;

    color: #ffffff;

    font-size: 13px;
}


/* DIVIDER */

.final-card-divider {
    height: 1px;

    margin: 22px 0;

    background: rgba(255,255,255,0.10);
}


/* =========================================
   MINI STEPS
========================================= */

.final-mini-step {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-bottom: 18px;
}

.mini-step-number {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    color: #6f9cff;

    background: rgba(30,94,255,0.12);

    border: 1px solid rgba(30,94,255,0.20);

    border-radius: 6px;

    font-size: 8px;

    font-weight: 700;
}

.final-mini-step strong {
    display: block;

    margin-bottom: 3px;

    color: rgba(255,255,255,0.90);

    font-size: 10px;
}

.final-mini-step span {
    display: block;

    color: rgba(255,255,255,0.40);

    font-size: 8px;

    line-height: 1.4;
}


/* =========================================
   CARD BUTTON
========================================= */

.final-card-button {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-top: 5px;

    padding: 12px 15px;

    color: #ffffff !important;

    background: #1e5eff;

    border: 1px solid #1e5eff;

    border-radius: 6px;

    font-size: 10px;

    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.3s ease;
}

.final-card-button:hover {
    color: #ffffff !important;

    background: #124bd6;

    border-color: #124bd6;
}

.final-card-button i {
    transition: transform 0.3s ease;
}

.final-card-button:hover i {
    transform: translateX(5px);
}


/* =========================================
   BOTTOM BRAND LINE
========================================= */

.final-cta-bottom {
    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 20px;

    margin-top: 70px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,0.09);
}

.final-cta-bottom span {
    color: rgba(255,255,255,0.35);

    font-size: 9px;
}

.final-cta-bottom span:last-child {
    text-align: right;
}

.final-cta-bottom div {
    width: 5px;
    height: 5px;

    background: #1e5eff;

    border-radius: 50%;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .dubai-final-cta-inner {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .final-cta-content {
        max-width: 750px;

        margin: 0 auto;

        text-align: center;
    }

    .final-cta-buttons,
    .final-cta-trust {
        justify-content: center;
    }

    .final-cta-card {
        max-width: 520px;

        width: 100%;

        margin: 0 auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .dubai-final-cta {
        padding: 65px 0 25px;
    }

    .final-cta-content h2 {
        font-size: 35px;

        letter-spacing: -0.8px;
    }

    .final-cta-content > p {
        font-size: 13px;
    }

    .final-cta-buttons {
        flex-direction: column;

        width: 100%;
    }

    .final-cta-primary,
    .final-cta-secondary {
        width: 100%;
    }

    .final-cta-trust {
        gap: 10px 15px;
    }

    .final-cta-card {
        padding: 22px;
    }

    .final-cta-bottom {
        grid-template-columns: 1fr;

        gap: 8px;

        text-align: center;
    }

    .final-cta-bottom span:last-child {
        text-align: center;
    }

    .final-cta-bottom div {
        margin: 3px auto;
    }

}
/* =========================================
   SECTION TAG - COMMON STYLE
========================================= */

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 16px;

    margin-bottom: 16px;

    color: #1e5eff;

    background: #eef5ff;

    border: 1px solid #d6e4ff;

    border-radius: 30px;

    font-size: 13px;
    line-height: 1;
    font-weight: 600;

    white-space: nowrap;
}


/* ICON / DOT */

.section-tag i {
    color: #1e5eff;
    font-size: 11px;
}


/* HOVER */

.section-tag:hover {
    background: #e7f0ff;
    border-color: #c8dcff;
}