/**
 * New Landing Page - Home Page Styles
 * Fastooo Design - Pixel Perfect Implementation
 */

/* ========================================
   HERO SECTION - NEW DESIGN
   ======================================== */
.hero-new {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    /* background-color: #F8F9FA; */
    background-color: white !important;
    overflow: hidden;
}

.hero-new__container {
    /* position: relative; */
    z-index: 11;
    width: 100%;
    margin-top: 100px;
}

.hero-new__wrapper {
    display: flex;
    /* justify-content: flex-end; */
    align-items: center;
    /* min-height: 500px; */
}

[dir="rtl"] .hero-new__wrapper {
    direction: rtl;
}

.hero-new__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #F0F0F033;
    z-index: 10;
}


.hero-new__image {
    width: 100%;
    /* height: 100%; */
    object-fit: contain;
    object-position: center bottom;
    transform: scaleX(-1);
}

[dir="rtl"] .hero-new__image {
    object-position: center bottom;
    transform: scaleX(1);
}

/* Hero Content - Overlay on Right */
.hero-new__content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    width: 45%;
    padding: 50px 24px;
    background-color: #FCFCFC;
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.92) 100%); */
    border-radius: 0;
    backdrop-filter: blur(12px);
}


[dir="rtl"] .hero-new__content {
    text-align: right;
}

[dir="ltr"] .hero-new__content {
    text-align: left;
}

.hero-new__title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.3;
    color: #1E2B4F;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.hero-new__subtitle {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #D96319;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-new__description {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
    color: #5A6A7D;
    margin-bottom: 32px;
    max-width: 480px;
}

/* CTA Button */
.hero-new__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #D96319;
    color: #FFFFFF;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(217, 99, 25, 0.3);
}

.hero-new__cta:hover {
    background: #C55815;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(217, 99, 25, 0.4);
}

.hero-new__cta:active {
    transform: translateY(-1px);
}

.hero-new__cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

[dir="rtl"] .hero-new__cta svg {
    transform: rotate(180deg);
}

.hero-new__cta:hover svg {
    transform: translateX(4px);
}

[dir="rtl"] .hero-new__cta:hover svg {
    transform: rotate(180deg) translateX(4px);
}

/* Background Pattern */
.hero-new__bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

/* ========================================
   CTA CARDS SECTION
   ======================================== */
.cta-cards-section {
    /* padding: 0 0 60px; */
    background-color: #FFFFFF;
    margin-top: 60px;
}

.cta-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 24px;
}

/* Base Card Styles */
.cta-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 280px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cta-card:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); */
}

/* Card Background Image */
.cta-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Overlays */
.cta-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.cta-card__overlay--orange {
    background: linear-gradient(135deg, rgba(217, 99, 25, 0.85) 0%, rgba(217, 99, 25, 0.65) 100%);
}

.cta-card__overlay--dark {
    background: linear-gradient(135deg, rgba(0, 8, 54, 0.75) 0%, rgba(0, 8, 54, 0.55) 100%);
}

/* Card Content */
.cta-card__content {
    position: relative;
    z-index: 3;
    padding: 24px;
}

.cta-card__content--center {
    text-align: center;
    padding: 24px 0 0 0;
}

.cta-card__title {
    font-family: 'Cairo', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.3;
}

.cta-card__title--dark {
    color: #1E2B4F;
}

.cta-card__text {
    font-family: 'Cairo', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.cta-card__text--dark {
    color: #5A6A7D;
}

/* Card Arrow */
.cta-card__arrow {
    position: absolute;
    bottom: 0px;
    z-index: 4;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    background-color: white;
}

[dir="rtl"] .cta-card__arrow {
    left: 0px;
    border-radius: 0 20px 0 0px;
}

[dir="ltr"] .cta-card__arrow {
    right: 0px;
    border-radius: 20px 0 0 0;
}

.cta-card__arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* .cta-card:hover .cta-card__arrow {
    transform: translate(-4px, -4px);
}

[dir="ltr"] .cta-card:hover .cta-card__arrow {
    transform: translate(4px, -4px);
} */

/* Support Card (Center White Card) */
.cta-card--support {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.cta-card--support:hover {
    border-color: #D96319;
    box-shadow: 0 20px 40px rgba(217, 99, 25, 0.1);
}

.cta-card__icon {
    width: 80px;
    height: 80px;
    /* margin-bottom: 20px; */
}

.cta-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ========================================
   CTA CARDS RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    .cta-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .cta-card {
        min-height: 240px;
    }
}

@media (max-width: 576px) {
    .cta-cards-section {
        padding: 40px 0;
    }

    .cta-cards-grid {
        gap: 16px;
        padding: 0 16px;
    }

    .cta-card {
        min-height: 200px;
    }

    .cta-card__title {
        font-size: 20px;
    }

    .cta-card__icon {
        width: 60px;
        height: 60px;
    }
}

/* ========================================
   STATS MAP SECTION
   ======================================== */
.stats-map-section {
    position: relative;
    background-color: #000836;
    padding: 80px 0;
    overflow: hidden;
}

.stats-map-section__container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* RTL: Map on left (first), Content on right (second) - reverse order */
[dir="rtl"] .stats-map-section__map {
    order: 2;
}

[dir="rtl"] .stats-map-section__content {
    order: 1;
}

/* LTR: Content on left (first), Map on right (second) - default order */
[dir="ltr"] .stats-map-section__map {
    order: 2;
    padding-right: 24px;
}

[dir="ltr"] .stats-map-section__content {
    order: 1;
    padding-left: 24px;
}

/* Map Side */
.stats-map-section__map {
    position: relative;
    width: 100%;
}

.stats-map-section__map-bg {
    position: relative;
    width: 100%;
}

.stats-map-section__map-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Markers overlay - same size as map */
.stats-map-section__markers {
    position: absolute;
    top: -7%;
    left: -14%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.stats-map-section__markers-image {
    width: 50%;
    height: 100%;
    object-fit: contain;
}


/* Content Side */
.stats-map-section__content {
    max-width: 500px;
}

[dir="rtl"] .stats-map-section__content {
    text-align: right;
}

[dir="ltr"] .stats-map-section__content {
    text-align: left;
}

/* Badge */
.stats-map-section__badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: #D96319;
    border-radius: 6px;
    margin-bottom: 20px;
}

.stats-map-section__badge span {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
}

/* Title */
.stats-map-section__title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.4;
}

/* Description */
.stats-map-section__description {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Stats Grid */
.stats-map-section__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stats-map-section__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 16px;
    position: relative;
}

[dir="rtl"] .stats-map-section__stat {
    border-right: 3px solid #D96319;
    padding-right: 16px;
    padding-left: 0;
}

[dir="ltr"] .stats-map-section__stat {
    border-left: 3px solid #D96319;
    padding-left: 16px;
    padding-right: 0;
}

.stats-map-section__stat-number {
    font-family: 'Cairo', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
}

.stats-map-section__stat-label {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: 80px 0;
    /* background-color: #F8F9FA; */
}

.services-section .container-new {
    padding: 0 24px;
}

/* Section Header */
.services-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.services-section__title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #D96319;
    margin: 0;
}

.services-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: transparent;
    border: 2px solid #D96319;
    border-radius: 8px;
    color: #D96319;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-section__cta:hover {
    background-color: #D96319;
    color: #FFFFFF;
}

[dir="rtl"] .services-section__cta svg {
    transform: rotate(180deg);
}

/* Services Grid */
.services-section__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Service Card */
.service-card {
    display: flex;
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    padding: 15px;
    border: 1px solid rgba(217, 99, 25, 0.15);
    position: relative;
}

/* .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(217, 99, 25, 0.3) 0%, transparent 50%, rgba(217, 99, 25, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
} */

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(217, 99, 25, 0.12);
    border-color: rgba(217, 99, 25, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

/* Card Image */
.service-card__image {
    flex: 0 0 45%;
    max-width: 45%;
    overflow: hidden;
    border-radius: 10px;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.05);
}

/* Card Content */
.service-card__content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

[dir="rtl"] .service-card__content {
    text-align: right;
}

[dir="ltr"] .service-card__content {
    text-align: left;
}

/* Card Icon */
.service-card__icon {
    width: 48px;
    height: 48px;
    background: #D96319;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}

.service-card__icon img,
.service-card__icon svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Card Title */
.service-card__title {
    font-family: 'Cairo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1E2B4F;
    margin-bottom: 12px;
}

/* Card Text */
.service-card__text {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #5A6A7D;
    line-height: 1.8;
    margin: 0;
}

/* RTL/LTR Card Layout */
[dir="rtl"] .service-card {
    flex-direction: row;
}

[dir="ltr"] .service-card {
    flex-direction: row-reverse;
}

/* ========================================
   PARTNERS SECTION - PREMIUM
   ======================================== */
.partners-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0A1628 0%, #1A2744 50%, #0D1A2D 100%);
    overflow: hidden;
}

/* Background Effects */
.partners-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.partners-section__gradient {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 99, 25, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Section Header */
.partners-section__header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 50px;
    padding: 0 24px;
}

.partners-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(217, 99, 25, 0.2) 0%, rgba(217, 99, 25, 0.1) 100%);
    border: 1px solid rgba(217, 99, 25, 0.3);
    border-radius: 50px;
    color: #D96319;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.partners-section__badge svg {
    width: 18px;
    height: 18px;
}

.partners-section__title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.4;
}

.partners-section__subtitle {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Partners Marquee */
.partners-marquee {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
}

/* Fade edges */
.partners-marquee::before,
.partners-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

/* .partners-marquee::before {
    left: 0;
    background: linear-gradient(to right, #0A1628 0%, transparent 100%);
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(to left, #0D1A2D 0%, transparent 100%);
} */

/* Marquee Track */
.partners-marquee__track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: marqueeScroll 120s linear infinite;
}

[dir="rtl"] .partners-marquee__track {
    animation: marqueeScrollRTL 120s linear infinite;
}

.partners-marquee:hover .partners-marquee__track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeScrollRTL {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

/* Marquee Item */
.partners-marquee__item {
    flex-shrink: 0;
}

/* Partner Logo Card */
.partner-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.partner-logo:hover {
    background: rgba(217, 99, 25, 0.15);
    border-color: rgba(217, 99, 25, 0.4);
    transform: translateY(-4px) scale(1.02);
    /* box-shadow: 0 20px 40px rgba(217, 99, 25, 0.2); */
}

.partner-logo__icon {
    font-size: 32px;
    line-height: 1;
}

.partner-logo__name {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

/* Stats Row */
.partners-section__stats {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.partners-stat__number {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #D96319 0%, #F59E4C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partners-stat__label {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

/* Partners Section Responsive */
@media (max-width: 991px) {
    .partners-section {
        padding: 60px 0;
    }

    .partners-section__header {
        margin-bottom: 40px;
    }

    .partners-section__stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 50px 0;
    }

    .partners-marquee::before,
    .partners-marquee::after {
        width: 80px;
    }

    .partners-marquee__track {
        gap: 24px;
    }

    .partner-logo {
        padding: 12px 20px;
    }

    .partner-logo__icon {
        font-size: 24px;
    }

    .partner-logo__name {
        font-size: 15px;
    }

    .partners-section__stats {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .partners-section__gradient {
        width: 300px;
        height: 300px;
    }

    .partners-section__stats {
        flex-direction: column;
        gap: 24px;
    }

    .partners-stat {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .partners-stat:last-child {
        border-bottom: none;
    }
}

/* ========================================
   WHY CHOOSE US SECTION - LIGHT PREMIUM
   ======================================== */
.why-choose-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FC 50%, #F3F4F8 100%);
    overflow: hidden;
}

/* Background Effects */
.why-choose-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

/* Decorative Orbs - Light Version */
.why-choose-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.why-choose-section__orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 99, 25, 0.08) 0%, transparent 70%);
    top: -150px;
    right: 5%;
    animation: floatOrb1 12s ease-in-out infinite;
}

.why-choose-section__orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    bottom: -100px;
    left: -5%;
    animation: floatOrb2 15s ease-in-out infinite;
}

@keyframes floatOrb1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, 20px) scale(1.05);
    }
}

@keyframes floatOrb2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(15px, -15px) scale(1.03);
    }
}

/* Grid Pattern - Light Version */
.why-choose-section__grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.8;
}

/* Section Wrapper */
.why-choose-section__wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

[dir="rtl"] .why-choose-section__wrapper {
    direction: rtl;
}

/* Content Side */
.why-choose-section__content {
    max-width: 500px;
}

[dir="rtl"] .why-choose-section__content {
    text-align: right;
}

[dir="ltr"] .why-choose-section__content {
    text-align: left;
}

/* Badge - Light Version */
.why-choose-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(217, 99, 25, 0.1) 0%, rgba(217, 99, 25, 0.05) 100%);
    border: 1px solid rgba(217, 99, 25, 0.15);
    border-radius: 50px;
    color: #D96319;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(217, 99, 25, 0.1);
}

.why-choose-section__badge-dot {
    width: 8px;
    height: 8px;
    background: #D96319;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

/* Title - Light Version */
.why-choose-section__title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #1A2744;
    line-height: 1.3;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(135deg, #D96319 0%, #E8772D 50%, #F59E4C 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

/* Description - Light Version */
.why-choose-section__description {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #5A6A85;
    line-height: 1.9;
    margin-bottom: 32px;
}

/* CTA Button - Light Version */
.why-choose-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #D96319 0%, #E8772D 100%);
    border-radius: 14px;
    color: #FFFFFF;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 4px 15px rgba(217, 99, 25, 0.25),
        0 0 0 0 rgba(217, 99, 25, 0.3);
}


.why-choose-section__wrapper {
    padding: 0 24px;
}

.why-choose-section__cta:hover {
    transform: translateY(-4px);
    color: #FFFFFF;
}

.why-choose-section__cta svg {
    transition: transform 0.3s ease;
}

[dir="rtl"] .why-choose-section__cta svg {
    transform: rotate(180deg);
}

[dir="rtl"] .why-choose-section__cta:hover svg {
    transform: rotate(180deg) translateX(5px);
}

[dir="ltr"] .why-choose-section__cta:hover svg {
    transform: translateX(5px);
}

/* Features Grid */
.why-choose-section__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Feature Card - Light Neumorphism Style */
.feature-card {
    position: relative;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: var(--delay, 0s);
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card__glow {
    display: none;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card__inner {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 32px 28px;
    height: 100%;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-card__inner {
    border-color: rgba(217, 99, 25, 0.2);
}

/* Icon - Light Version */
.feature-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFF5ED 0%, #FFEBE0 100%);
    border: 1px solid rgba(217, 99, 25, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.15s ease;
}

.feature-card:hover .feature-card__icon {
    background: linear-gradient(135deg, #D96319 0%, #E8772D 100%);
    border-color: transparent;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(217, 99, 25, 0.3);
}

.feature-card__icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: filter 0.15s ease;
}

.feature-card:hover .feature-card__icon img {
    filter: brightness(0) invert(1);
}

/* Card Title - Light Version */
.feature-card__title {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A2744;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.feature-card:hover .feature-card__title {
    /* color: #FFFFFF; */
    opacity: 1;
    transform: translateX(-3px);
}

[dir="ltr"] .feature-card:hover .feature-card__title {
    transform: translateX(3px);
}

/* Card Text - Light Version */
.feature-card__text {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #6B7A94;
    line-height: 1.7;
    opacity: 0.75;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-card__text {
    opacity: 1;
    transform: translateY(-3px);
    color: #4A5A74;
}

/* Why Choose Responsive */
@media (max-width: 991px) {
    .why-choose-section {
        padding: 70px 0;
    }

    .why-choose-section__wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-choose-section__content {
        max-width: 100%;
        text-align: center;
    }

    [dir="rtl"] .why-choose-section__content,
    [dir="ltr"] .why-choose-section__content {
        text-align: center;
    }

    .why-choose-section__features {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .why-choose-section {
        padding: 50px 0;
    }

    .why-choose-section__features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card__inner {
        padding: 24px 20px;
    }

    .feature-card__icon {
        width: 52px;
        height: 52px;
    }

    .feature-card__icon img {
        width: 24px;
        height: 24px;
    }

    .why-choose-section__orb--1,
    .why-choose-section__orb--2 {
        display: none;
    }
}

/* ========================================
   VALUE SLIDER SECTION
   ======================================== */
.value-slider-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #F3F4F8 0%, #FFFFFF 100%);
}

.value-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Slider Track */
.value-slider__track {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
}

/* Individual Card */
.value-slider__card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.value-slider__card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* Card Background */
.value-slider__card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.value-slider__card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-slider__card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 8, 54, 0.80);
}

/* Card Content */
.value-slider__card-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px 60px;
    text-align: center;
}

.value-slider__card-title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.value-slider__card-text {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 32px;
}

/* Card CTA Button */
.value-slider__card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #D96319 0%, #E8772D 100%);
    border-radius: 12px;
    color: #FFFFFF !important;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(217, 99, 25, 0.3);
}

.value-slider__card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(217, 99, 25, 0.4);
}

.value-slider__card-btn svg {
    transition: transform 0.3s ease;
}

[dir="rtl"] .value-slider__card-btn svg {
    transform: rotate(180deg);
}

[dir="rtl"] .value-slider__card-btn:hover svg {
    transform: rotate(180deg) translateX(4px);
}

[dir="ltr"] .value-slider__card-btn:hover svg {
    transform: translateX(4px);
}

/* Card Gradient Border (Bottom) */
.value-slider__card-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #D96319 0%, #73340D 100%);
    z-index: 4;
}

/* Navigation Dots */
.value-slider__nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.value-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #D96319;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.value-slider__dot:hover {
    background: rgba(217, 99, 25, 0.3);
}

.value-slider__dot.active {
    background: #D96319;
    transform: scale(1.2);
}

/* Value Slider Responsive */
@media (max-width: 991px) {
    .value-slider-section {
        padding: 60px 24px;
    }

    .value-slider__track {
        height: 380px;
    }

    .value-slider__card-content {
        padding: 30px 40px;
    }
}

@media (max-width: 768px) {
    .value-slider-section {
        padding: 40px 24px;
    }

    .value-slider__track {
        height: 350px;
        border-radius: 20px;
    }

    .value-slider__card-content {
        padding: 24px 24px;
    }

    .value-slider__card-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .value-slider__card-text {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .value-slider__card-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .value-slider__track {
        height: 320px;
        border-radius: 16px;
    }

    .value-slider__card-content {
        padding: 20px 16px;
    }

    .value-slider__card-title {
        font-size: 1.25rem;
    }

    .value-slider__card-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .value-slider__nav {
        gap: 10px;
        margin-top: 20px;
    }

    .value-slider__dot {
        width: 10px;
        height: 10px;
    }
}

/* ========================================
   TESTIMONIALS SECTION - PREMIUM
   ======================================== */
.testimonials-section {
    position: relative;
    padding: 100px 24px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FC 100%);
    overflow: hidden;
}

/* Background Pattern */
.testimonials-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.testimonials-section__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(217, 99, 25, 0.03) 1px, transparent 0);
    background-size: 48px 48px;
}

/* Section Header */
.testimonials-section__header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(217, 99, 25, 0.1) 0%, rgba(217, 99, 25, 0.05) 100%);
    border: 1px solid rgba(217, 99, 25, 0.15);
    border-radius: 50px;
    color: #D96319;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.testimonials-section__badge svg {
    width: 16px;
    height: 16px;
}

.testimonials-section__title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1A2744;
    margin-bottom: 16px;
}

.testimonials-section__subtitle {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6B7A94;
    max-width: 500px;
    margin: 0 auto;
}

/* Premium Testimonials Section */
.premium-testimonials {
    position: relative;
    padding: 120px 0;
    background: #F8FAFC;
    overflow: hidden;
}

.premium-slider {
    padding: 0 24px;
}

.premium-testimonials__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.premium-testimonials__circle-1,
.premium-testimonials__circle-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.premium-testimonials__circle-1 {
    width: 400px;
    height: 400px;
    background: rgba(217, 99, 25, 0.1);
    top: -100px;
    right: -100px;
}

.premium-testimonials__circle-2 {
    width: 300px;
    height: 300px;
    background: rgba(26, 39, 68, 0.05);
    bottom: -50px;
    left: -50px;
}

.premium-testimonials__header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.premium-testimonials__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    padding: 8px 16px;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

.premium-testimonials__badge i {
    color: #F59E0B;
    font-size: 14px;
}

.premium-testimonials__badge span {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1A2744;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-testimonials__title {
    font-family: 'Cairo', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #1A2744;
    margin-bottom: 20px;
}

.premium-testimonials__subtitle {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    color: #64748B;
    line-height: 1.6;
}

/* Slider Component */
.premium-slider {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
}

.premium-slider__viewport {
    overflow: hidden;
    padding: 20px 0;
}

.premium-slider__track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Testimonial Item */
.testimonial-item {
    flex: 0 0 calc((100% - 60px) / 3);
    min-width: calc((100% - 60px) / 3);
}

.testimonial-item__card {
    height: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 32px;
    padding: 40px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-item__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    border-color: rgba(217, 99, 25, 0.2);
}

.testimonial-item__quote {
    width: 48px;
    height: 48px;
    color: rgba(217, 99, 25, 0.1);
    margin-bottom: 24px;
}

.testimonial-item__rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-item__rating i {
    color: #F59E0B;
    font-size: 12px;
}

.testimonial-item__text {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 32px;
    flex-grow: 1;
}

.testimonial-item__author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #F1F5F9;
}

.testimonial-item__avatar {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    overflow: hidden;
    background: #F8FAFC;
}

.testimonial-item__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-item__info {
    flex: 1;
}

.testimonial-item__name {
    font-family: 'Cairo', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1A2744;
    margin-bottom: 4px;
    text-align: right;
}

[dir="ltr"] .testimonial-item__name {
    text-align: left;
}

.testimonial-item__role {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    color: #64748B;
    display: block;
    text-align: right;
}

[dir="ltr"] .testimonial-item__role {
    text-align: left;
}

/* Controls */
.premium-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.premium-slider__arrow {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    color: #1A2744;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-slider__arrow:hover:not(:disabled) {
    background: #1A2744;
    color: #FFFFFF;
    border-color: #1A2744;
    transform: translateY(-2px);
}

.premium-slider__arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.premium-slider__dots {
    display: flex;
    gap: 12px;
}

.premium-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background: #E2E8F0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-slider__dot.active {
    width: 32px;
    background: #D96319;
}

/* RTL - Flip arrows */
[dir="rtl"] .premium-slider__arrow i {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonial-item {
        flex: 0 0 calc((100% - 30px) / 2);
        min-width: calc((100% - 30px) / 2);
    }
}

@media (max-width: 768px) {
    .premium-testimonials {
        padding: 80px 0;
    }

    .premium-testimonials__title {
        font-size: 32px;
    }

    .testimonial-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .testimonial-item__card {
        padding: 30px;
    }
}

/* Services Section Responsive */
@media (max-width: 991px) {
    .services-section {
        padding: 60px 0;
    }

    .services-section .container-new {
        padding: 0 24px;
    }

    .services-section__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 550px;
        margin: 0 auto;
    }

    .service-card {
        padding: 12px;
    }

    .service-card__image {
        flex: 0 0 40%;
        max-width: 40%;
        max-height: 180px;
    }

    .service-card__content {
        padding: 16px;
    }

    .service-card__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .service-card__icon img,
    .service-card__icon svg {
        width: 20px;
        height: 20px;
    }

    .service-card__title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .service-card__text {
        font-size: 13px;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 40px 0;
    }

    .services-section__header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .service-card {
        flex-direction: column !important;
    }

    .service-card__image {
        flex: none;
        max-width: 100%;
        height: 180px;
    }

    .service-card__content {
        text-align: center;
    }

    .service-card__icon {
        margin: 0 auto 16px;
    }

    .service-card__title {
        font-size: 18px;
    }
}

/* Stats Map Responsive */
@media (max-width: 991px) {
    .stats-map-section {
        padding: 60px 0;
    }

    .stats-map-section__container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
    }

    .stats-map-section__map {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .stats-map-section__content {
        order: 2;
        max-width: 100%;
        text-align: center;
    }

    [dir="rtl"] .stats-map-section__content,
    [dir="ltr"] .stats-map-section__content {
        text-align: center;
    }

    .stats-map-section__badge {
        margin-bottom: 16px;
    }

    .stats-map-section__grid {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .stats-map-section {
        padding: 40px 0;
    }

    .stats-map-section__map {
        max-width: 350px;
    }

    .stats-map-section__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-map-section__stat-number {
        font-size: 24px;
    }
}

/* ========================================
   SECTION HEADER
   ======================================== */
.section-header-new {
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.section-header-new__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.section-header-new__text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section-new__wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-section-new__content {
    max-width: 540px;
}

.about-section-new__title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.about-section-new__subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.about-section-new__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.about-section-new__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-section-new__image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section-new__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.feature-card-new {
    background: #FFFFFF;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.feature-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(217, 99, 25, 0.2);
}

.feature-card-new__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 99, 25, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.feature-card-new:hover .feature-card-new__icon {
    background: #D96319;
}

.feature-card-new__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: none;
    transition: filter var(--transition-normal);
}

.feature-card-new:hover .feature-card-new__icon img {
    filter: brightness(0) invert(1);
}

.feature-card-new__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.feature-card-new__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (min-width: 992px) {

    /* Soft fade overlay on the edge */
    .hero-new__content::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 80px;
        pointer-events: none;
        z-index: -1;
    }

    [dir="rtl"] .hero-new__content::before {
        right: 100%;
        background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.7) 30%, rgba(255, 255, 255, 0.95) 100%);
    }

    [dir="ltr"] .hero-new__content::before {
        left: 100%;
        background: linear-gradient(to left, transparent 0%, rgba(255, 255, 255, 0.7) 30%, rgba(255, 255, 255, 0.95) 100%);
    }

    [dir="rtl"] .hero-new__image-wrapper {
        position: absolute;
        /* left: 0; */
        top: 0;
        left: 11%;
        bottom: 0;
        width: 55%;
        height: 100%;
        z-index: 1;
        margin-top: 100px;
    }

    [dir="ltr"] .hero-new__image-wrapper {
        position: absolute;
        /* left: 0; */
        top: 0;
        right: 11%;
        bottom: 0;
        width: 55%;
        height: 100%;
        z-index: 1;
        margin-top: 100px;
    }


}

@media (min-width: 768px) {
    .cta-cards-section {
        padding: 60px 0;
    }
}

@media (max-width: 1470px) {
    [dir="rtl"] .hero-new__image-wrapper {
        position: absolute;
        /* left: 0; */
        top: 0;
        left: 0%;
        bottom: 0;
        width: 55%;
        height: 100%;
        z-index: 1;
        /* margin-top: 100px; */
    }

    [dir="ltr"] .hero-new__image-wrapper {
        position: absolute;
        /* left: 0; */
        top: 0;
        right: 0%;
        bottom: 0;
        width: 55%;
        height: 100%;
        z-index: 1;
        /* margin-top: 100px; */
    }
}

@media (min-width: 1500px) {
    .hero-new {
        padding-bottom: 100px;
    }
}

@media (max-width: 991px) {

    [dir="rtl"] .hero-new__image-wrapper {
        position: absolute;
        /* left: 0; */
        top: 0;
        left: 0%;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        margin-top: 100px;
    }

    [dir="ltr"] .hero-new__image-wrapper {
        position: absolute;
        /* left: 0; */
        top: 0;
        right: 0%;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        /* margin-top: 100px; */
    }

    .hero-new {
        min-height: auto;
        position: relative;
    }

    .hero-new__wrapper {
        flex-direction: column;
        justify-content: flex-end;
        /* min-height: 600px; */
        padding-top: 170px;
    }

    .hero-new__image-wrapper {
        height: 300px;
        bottom: auto;
    }

    .hero-new__image {
        object-fit: contain;
        object-position: center;
    }

    .hero-new__content {
        width: 100%;
        max-width: 100%;
        text-align: center;
        background: rgba(248, 249, 250, 0.95);
        border-radius: 0;
        padding: 30px 20px;
    }

    [dir="rtl"] .hero-new__content,
    [dir="ltr"] .hero-new__content {
        text-align: center;
    }

    .hero-new__description {
        margin-left: auto;
        margin-right: auto;
    }

    .about-section-new__wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-section-new__content {
        max-width: 100%;
        order: 2;
    }

    .about-section-new__image {
        order: 1;
        margin-bottom: var(--space-lg);
    }

    .about-section-new__image img {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-new {
        padding: 30px 0 50px;
    }

    .hero-new__title {
        font-size: 1.75rem;
    }

    .hero-new__subtitle {
        font-size: 1.35rem;
    }

    .hero-new__description {
        font-size: 15px;
    }

    /* .hero-new__image {
        max-width: 400px;
    } */

    .hero-new__cta {
        padding: 12px 24px;
        font-size: 15px;
    }

    .features-section-new__grid {
        grid-template-columns: 1fr;
    }

    .hero-new__overlay {
        height: 94%;
    }

    .stats-map-section {
        margin-top: 60px;
    }

    .hero-new__image-wrapper {
        background-color: #f8f9faf2;
    }
}

@media (max-width: 600px) {
    .hero-new__content {
        /* margin-bottom: 100px; */
    }

    .hero-new__overlay {
        height: 81%;
    }
}

@media (max-width: 450px) {
    .hero-new__content {
        /* margin-bottom: 130px; */
        /* transform: translateY(-130px) !important; */
    }

    .hero-new__overlay {
        height: 78%;
    }
}

@media (max-width: 390px) {
    .hero-new__wrapper {
        padding-top: 80px;
    }

    .hero-new__overlay {
        height: 94%;
    }
}

@media (max-width: 576px) {
    .hero-new {
        padding: 20px 0 40px;
    }

    /* .hero-new__image {
        max-width: 300px;
    } */

    .hero-new__title {
        font-size: 1.5rem;
    }

    .hero-new__subtitle {
        font-size: 1.2rem;
    }

    .hero-new__description {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-section-new__image img {
        max-width: 280px;
    }
}

/* ========================================
   ANIMATION ENHANCEMENTS
   ======================================== */
.hero-new__content {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-new__image-wrapper {
    animation: fadeInLeft 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

[dir="rtl"] .hero-new__image-wrapper {
    animation-name: fadeInRight;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   PREMIUM FOOTER
   ======================================== */
.premium-footer {
    position: relative;
    background: #0A1629;
    /* Deep Navy from reference */
    padding: 80px 24px 0;
    color: #FFFFFF;
    overflow: hidden;
    z-index: 10;
}

.premium-footer__pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(30deg, #0A1629 12%, transparent 12.5%, transparent 87%, #0A1629 87.5%, #0A1629),
        linear-gradient(150deg, #0A1629 12%, transparent 12.5%, transparent 87%, #0A1629 87.5%, #0A1629),
        linear-gradient(30deg, #0A1629 12%, transparent 12.5%, transparent 87%, #0A1629 87.5%, #0A1629),
        linear-gradient(150deg, #0A1629 12%, transparent 12.5%, transparent 87%, #0A1629 87.5%, #0A1629),
        linear-gradient(60deg, #13223A 25%, transparent 25.5%, transparent 75%, #13223A 75%, #13223A),
        linear-gradient(60deg, #13223A 25%, transparent 25.5%, transparent 75%, #13223A 75%, #13223A);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    opacity: 0.15;
    pointer-events: none;
}

.premium-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}


.footer-col__logo {
    display: block;
    margin-bottom: 24px;
}

.footer-col__logo img {
    height: 50px;
}

.footer-col__description {
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #94A3B8;
    max-width: 320px;
}

.footer-col__title {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #F97316;
    /* Orange title from reference */
    margin-bottom: 28px;
    position: relative;
    /* text-align: left; */
}

.footer-col__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

[dir="rtl"] .footer-col__links {
    text-align: right;
}

[dir="ltr"] .footer-col__links {
    text-align: left;
}

.footer-col__links li {
    margin-bottom: 16px;
}

.footer-col__links a {
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    color: #E2E8F0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col__links a:hover {
    color: #F97316;
    transform: translateX(-5px);
}

[dir="ltr"] .footer-col__links a:hover {
    transform: translateX(5px);
}

/* Newsletter Styles 1:1 with Reference */
.newsletter-col {
    text-align: right;
}

[dir="ltr"] .newsletter-col {
    text-align: left;
}

.newsletter-form {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 6px;
    display: flex;
    max-width: 380px;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-form form {
    display: flex;
    width: 100%;
    align-items: center;
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 16px;
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    color: #1A2744;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #94A3B8;
}

.newsletter-form button {
    background: #1E293B;
    color: #FFFFFF;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #F97316;
}

/* Bottom Bar */
.premium-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #F97316;
    border-color: #F97316;
    color: #FFFFFF !important;
    transform: translateY(-3px);
}

.social-link:hover svg {
    fill: #FFFFFF;
}

.social-link svg {
    transition: fill 0.3s ease;
}

.footer-copyright {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    color: #94A3B8;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .premium-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
}

@media (max-width: 768px) {
    .premium-footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-col__description,
    .newsletter-form {
        margin-left: auto;
        margin-right: auto;
    }

    .premium-footer__bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .newsletter-col {
        text-align: center;
    }
}

/* ========================================
   PREMIUM CONTACT SECTION
   ======================================== */
.contact-section {
    position: relative;
    padding: 120px 24px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 50%, #FFFFFF 100%);
    overflow: hidden;
    margin-top: 80px;
}

/* Animated Background */
.contact-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.contact-section__gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: floatOrb 15s ease-in-out infinite;
}

.contact-section__gradient-orb--1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(217, 99, 25, 0.15) 0%, rgba(115, 52, 13, 0.1) 100%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.contact-section__gradient-orb--2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(26, 39, 68, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 10px) scale(1.02);
    }
}

.contact-section__grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(217, 99, 25, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(217, 99, 25, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Section Header */
.contact-section__header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.contact-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(217, 99, 25, 0.15);
    border: 1px solid rgba(217, 99, 25, 0.3);
    padding: 10px 20px;
    border-radius: 100px;
    color: #D96319;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.contact-section__badge span {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-section__title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #1A2744;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-section__subtitle {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    color: #64748B;
    line-height: 1.7;
}

/* Wrapper */
.contact-section__wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Contact Info Side */
.contact-section__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Info Cards */
.contact-info-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.contact-info-card:hover {
    background: #FFFFFF;
    border-color: rgba(217, 99, 25, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(217, 99, 25, 0.12);
}

.contact-info-card__glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(217, 99, 25, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

[dir="rtl"] .contact-info-card__glow {
    right: auto;
    left: 0;
}

.contact-info-card:hover .contact-info-card__glow {
    opacity: 1;
}

.contact-info-card__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D96319 0%, #73340D 100%);
    border-radius: 16px;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(217, 99, 25, 0.3);
}

.contact-info-card__content {
    flex: 1;
}

.contact-info-card__title {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1A2744;
    margin-bottom: 8px;
}

.contact-info-card__text {
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    color: #64748B;
    margin: 0;
    line-height: 1.6;
    direction: ltr;
}

/* Social Links */
.contact-social {
    padding: 28px;
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.contact-social__label {
    display: block;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.contact-social__links {
    display: flex;
    gap: 12px;
}

.contact-social__link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8FAFC;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 14px;
    color: #64748B;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-social__link:hover {
    background: linear-gradient(135deg, #D96319 0%, #73340D 100%);
    border-color: transparent;
    color: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(217, 99, 25, 0.4);
}

/* Contact Form */
.contact-section__form-wrapper {
    position: relative;
}

.contact-form {
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D96319 0%, #73340D 50%, #D96319 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.contact-form__header {
    margin-bottom: 32px;
}

.contact-form__title {
    font-family: 'Cairo', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1A2744;
    margin-bottom: 8px;
}

.contact-form__desc {
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    color: #64748B;
    margin: 0;
}

.contact-form__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form__label {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1A2744;
}

.contact-form__input,
.contact-form__textarea {
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    color: #1A2744;
    background: #F8FAFC;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 14px;
    padding: 16px 20px;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: #94A3B8;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    background: #FFFFFF;
    border-color: rgba(217, 99, 25, 0.5);
    box-shadow: 0 0 0 4px rgba(217, 99, 25, 0.1);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(135deg, #D96319 0%, #73340D 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-form__submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-form__submit:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 16px 40px rgba(217, 99, 25, 0.4); */
}

.contact-form__submit:hover::before {
    left: 100%;
}

[dir="rtl"] .contact-form__submit svg {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-section {
        padding: 80px 24px;
    }

    .contact-section__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-section__info {
        order: 2;
    }

    .contact-section__form-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 16px;
    }

    .contact-section__header {
        margin-bottom: 40px;
    }

    .contact-form {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 20px;
    }

    .contact-info-card__icon {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 16px;
    }

    .contact-section__title {
        font-size: 1.75rem;
    }

    .contact-social__links {
        flex-wrap: wrap;
    }
}
