    /*
Theme Name: Jolz RTL Professional V6
Description: نسخة احترافية تدعم اللغة العربية (RTL) بالكامل مع تحسين التباين وتنسيق الأقسام.
Version: 6.0
*/

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&family=Tajawal:wght@300;400;500;700;800&display=swap');

:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #C5A028;
    --dark-blue: #0f172a;
    --navy-dark: #020617;
    --white: #ffffff;
    --darkwhite: #fffdfd;
    --light-gray: #fafafa;
    --text-muted: #64748b;
    --diagram-radius: 420px;
    /* نصف قطر مخطط السوق المستهدف */
}

html {
    overflow-x: hidden !important;
}

body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    background-color: var(--white);
    color: var(--dark-blue);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    line-height: 1.8;
}

/* Typography & Contrast */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
}

.gold-text {
    color: var(--primary-gold) !important;
}

.navy-text {
    color: var(--dark-blue) !important;
}

.bg-navy {
    background-color: var(--dark-blue);
}

.bg-gold {
    background-color: var(--primary-gold);
}

.bg-darkwhite {
    background-color: var(--darkwhite);
}

/* Layout Adjustments for RTL */
.ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

.me-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}

.text-end {
    text-align: left !important;
}

.text-start {
    text-align: right !important;
}

/* Buttons */
.btn-gold {
    background-color: var(--primary-gold);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background-color: var(--secondary-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Navbar */

.navbar {
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 2px solid var(--primary-gold);
}


.nav-link {
    color: white !important;
    font-weight: 600;
    margin: 0 15px;
    transition: 0.3s;
}


.nav-link:hover {
    color: var(--primary-gold) !important;
}

/* Toggle icons */

.navbar-toggler .toggler-close {
    display: none;
}

.navbar-toggler.is-open .toggler-open {
    display: none;
}


.navbar-toggler.is-open .toggler-close {

    display: inline-block;

}

/* Hero Slider RTL */
.hero-swiper {
    width: 100%;
    height: 114vh;
}

.hero-slider .swiper-slide {
    margin-top: 40px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slider .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.4));
}

.slide-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 85%;
}

/* Section Spacing */
.section-padding {
    padding: 120px 0;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-gold);
}

.section-title.text-center::after {
    right: 50%;
    transform: translateX(50%);
}

/* Cards & Icons */
.card {
    border: none;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: var(--light-gray);
    margin-bottom: 25px;
    transition: 0.3s;
}

.card:hover .icon-box {
    background: var(--primary-gold);
}

.card:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.icon-box img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    transition: 0.3s;
}

/* Products RTL */
.product-card {
    overflow: hidden;
    background: white;
    border: 1px solid #edf2f7;
}

.product-img-container,
.card .icon {
    height: 160px;
    overflow: hidden;
    background: #fdfdfd;
}

.product-img-container img,
.card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: 0.6s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

/* Footer RTL */
.footer-main {
    background: var(--navy-dark);
    color: white;
    padding: 100px 0 40px;
}

.social-links img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: 0.4s;
    margin: 0 2px;
}

.social-links img:hover {
    filter: none;
    transform: translateY(-8px) scale(1.1);
}

/* Swiper Navigation RTL Fix */
.swiper-button-next {
    right: auto;
    left: 30px;
}

.swiper-button-prev {
    left: auto;
    right: 30px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px;
    color: var(--primary-gold);
}

/* Vision & Mission Section */
.vision-mission-section {
    position: relative;
    background: radial-gradient(1200px 400px at 50% 0%, rgba(212, 175, 55, .10), transparent 60%), linear-gradient(180deg, rgba(2, 6, 23, .04), transparent 40%);
}

.vm-card {
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 18px 45px rgba(2, 6, 23, .08);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(2, 6, 23, .12);
}

.vm-header {
    padding: 22px 22px 16px;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
    position: relative;
}

.vm-header::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, .22), transparent 60%);
    pointer-events: none;
}

.vm-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, .14);
    color: var(--dark-blue);
    border: 1px solid rgba(212, 175, 55, .30);
}

.vm-body {
    padding: 16px 22px 8px;
    line-height: 1.9;
}

/* Stores Slider */
.stores-swiper {
    padding: 6px 0 42px;
}

.stores-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.partner-card {
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 4px;
    border-radius: 22px;
    text-align: center;
}

.partner-logo {
    max-height: 100%;
    width: auto;
    border-radius: 22px;
    max-width: 100%;
    object-fit: contain;
}

/* =================================================================== */
/* === TARGET MARKET SECTION (FORCE VISIBILITY & HIGH SPECIFICITY) === */
/* =================================================================== */
section#target-market-smart {
    background: linear-gradient(135deg, #050811 0%, #0f172a 50%, #050811 100%);
    position: relative;
    overflow: hidden;
   
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(1px 1px at 10% 20%, #fff, transparent), radial-gradient(1.5px 1.5px at 30% 40%, #D4AF37, transparent), radial-gradient(1px 1px at 50% 10%, #fff, transparent), radial-gradient(1px 1px at 70% 60%, #D4AF37, transparent), radial-gradient(1.5px 1.5px at 20% 80%, #fff, transparent), radial-gradient(1px 1px at 80% 30%, #D4AF37, transparent), radial-gradient(1px 1px at 40% 70%, #fff, transparent), radial-gradient(1.5px 1.5px at 90% 80%, #D4AF37, transparent);
    background-size: 400px 400px;
    animation: starfieldFloat 40s linear infinite;
    opacity: 0.4;
    pointer-events: none;
}

@keyframes starfieldFloat {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 400px 400px;
    }
}

.section-header {
    position: relative;
    z-index: 5;
}

.gold-accent {
    color: #D4AF37;
    letter-spacing: 2px;
    font-size: 0.95rem;
    text-transform: uppercase;
}

section#target-market-smart .diagram-wrapper {
    position: relative;
    width: 940px;
    height: 900px;
    margin: 0 auto;
    z-index: 10;
    display: block !important;
}

section#target-market-smart .hub-circle {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 220px;
    height: 220px;
    border: 4px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 80px rgba(212, 175, 55, 0.5), inset 0 0 50px rgba(212, 175, 55, 0.15);
    animation: hubGlow 4s ease-in-out infinite;
}

@keyframes hubGlow {

    0%,
    100% {
        box-shadow: 0 0 80px rgba(212, 175, 55, 0.5), inset 0 0 50px rgba(212, 175, 55, 0.15);
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        box-shadow: 0 0 120px rgba(212, 175, 55, 0.8), inset 0 0 50px rgba(212, 175, 55, 0.25);
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.hub-inner {
    text-align: center;
}

.hub-title {
    color: #D4AF37;
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.hub-subtitle {
    color: #fff;
    font-size: 0.9rem;
    margin-top: 8px;
    opacity: 0.85;
    letter-spacing: 1px;
}

section#target-market-smart .circles-container {
    position: absolute;
    top: 46%;
    left: 50%;
    width: 1px;
    height: 1px;
    z-index: 5;
    visibility: visible !important;
}

section#target-market-smart .circle-item {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 130px;
    height: 130px;
    margin: -65px;
    border: 3px solid #D4AF37;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 6 !important;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.15), transparent);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.circle-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 10px;
}

.circle-item i {
    font-size: 2rem;
    color: #D4AF37;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.circle-text {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
}

.circle-subtext {
    color: rgba(212, 175, 55, 0.7);
    font-size: 0.7rem;
    font-weight: 500;
}

section#target-market-smart .circle-item:nth-child(1) {
    transform: rotate(0deg) translate(var(--diagram-radius)) rotate(0deg) !important;
}

section#target-market-smart .circle-item:nth-child(2) {
    transform: rotate(45deg) translate(var(--diagram-radius)) rotate(-45deg) !important;
}

section#target-market-smart .circle-item:nth-child(3) {
    transform: rotate(90deg) translate(var(--diagram-radius)) rotate(-90deg) !important;
}

section#target-market-smart .circle-item:nth-child(4) {
    transform: rotate(135deg) translate(var(--diagram-radius)) rotate(-135deg) !important;
}

section#target-market-smart .circle-item:nth-child(5) {
    transform: rotate(180deg) translate(var(--diagram-radius)) rotate(-180deg) !important;
}

section#target-market-smart .circle-item:nth-child(6) {
    transform: rotate(225deg) translate(var(--diagram-radius)) rotate(-225deg) !important;
}

section#target-market-smart .circle-item:nth-child(7) {
    transform: rotate(270deg) translate(var(--diagram-radius)) rotate(-270deg) !important;
}

section#target-market-smart .circle-item:nth-child(8) {
    transform: rotate(315deg) translate(var(--diagram-radius)) rotate(-315deg) !important;
}

.diagram-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connecting-line {
    stroke: #D4AF37;
    stroke-width: 1.5;
    opacity: 0.4;
    filter: url(#line-glow);
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {

    0%,
    100% {
        opacity: 0.3;
        stroke-width: 1.5;
    }

    50% {
        opacity: 0.7;
        stroke-width: 2.5;
    }
}

/* Mobile Layout for Target Market */
.mobile-layout {
    display: none;
}

/* Hidden by default on desktop */
.mobile-cards-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.mobile-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-section-title {
    color: #D4AF37;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.mobile-cards-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid #D4AF37;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.card-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4AF37, #fdd655);
    border-radius: 50%;
    color: #050811;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.card-text-wrapper {
    flex: 1;
}

.card-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* =================================================================== */
/* ============== END OF TARGET MARKET SECTION STYLES ============== */
/* =================================================================== */

/* Jewelry Collection Section */
.jewelry-section {
   
   /* background: radial-gradient(circle at top, #1a0f07, #000);*/
    position: relative;
    overflow: hidden;
}

.gold-title {
    color: #D4AF37;
    font-size: 38px;
}

.gold-subtitle {
    color: #D4AF37;
    letter-spacing: 2px;
}

.collection-desc {
    max-width: 700px;
    color: #ddd;
}

.jewelry-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
}

.jewelry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.jewelry-card:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: 600;
}

.overlay.big {
    font-size: 20px;
    padding: 20px;
}

.small-card {
    height: 180px;
}

.featured-card {
    
    border: 1px solid #D4AF37;
}

.feature-item {
    color:var(--dark-blue);
    font-weight: 500;
}

/* Features Section */
#features .row.justify-content-center .card {
    background-color: #ffffff;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#features .row.justify-content-center .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#features .row.justify-content-center p {
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 80px 0;
    }

    .hero-swiper {
        height: 70vh;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .slide-content {
        max-width: 100% !important;
    }

    /* Target Market Responsive */
    section#target-market-smart .diagram-wrapper {
        width: 700px;
        height: 700px;
    }

    :root {
        --diagram-radius: 320px;
    }

    section#target-market-smart .circle-item {
        width: 110px;
        height: 110px;
        margin: -55px;
    }

    .social-links img {
        width: 23px !important;
        height: 23px !important;
        margin: 0 2px !important;
    }
}

@media (max-width: 767.98px) {
    .slide-content h1 {
        font-size: 21px !important;
    }

    .slide-content p {
        font-size: 15px !important;
    }

    .btn-gold {
        padding: 5px 12px !important;
        font-weight: 500 !important;
    }

    /* Target Market Responsive */
    section#target-market-smart .diagram-wrapper {
        display: none !important;
    }

    .mobile-layout {
        display: block !important;
    }

    /* Jewelry Collection Responsive */
    .jewelry-card.small-card {
        height: auto;
        max-height: 180px;
        aspect-ratio: 1 / 1;
    }

    .jewelry-card.featured-card {
        height: auto;
        max-height: 300px;
        aspect-ratio: 16 / 9;
    }

    .overlay.big {
        font-size: 16px;
        padding: 10px;
    }

    .collection-desc {
        padding: 0 15px;
        text-align: center;
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {

    /* Target Market Mobile Responsive */
    .target-market-smart {
        min-height: auto;
        padding: 40px 0;
    }

    .mobile-section-title {
        font-size: 1.1rem;
    }

    .mobile-card {
        padding: 14px 16px;
        gap: 12px;
    }

    .card-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .card-title {
        font-size: 0.9rem;
    }
}

/* --- Partners Section --- */
.partners-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.partner-category {
    background: white;
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.partner-category::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    border-radius: 20px;
}

.partner-category:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-8px);
}

.partner-icon {
    font-size: 50px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

/***************/
/* Strategy & Growth */
.growth-stat-box {
    background: var(--dark-blue);
    color: white;
    padding: 40px;
    border-radius: 30px;
    border-right: 5px solid var(--primary-gold);
}

.jewelry-section {
    
   /* background: radial-gradient(circle at top, #1a0f07, #000);*/
    position: relative;
    overflow: hidden;
}

.gold-title {
    color: #D4AF37;
    font-size: 38px;
}

.gold-subtitle {
    color: #D4AF37;
    letter-spacing: 2px;
}

.collection-desc {
    max-width: 700px;
       color: var(--dark-blue);
}

.jewelry-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
}

.jewelry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.jewelry-card:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: 600;
}

.overlay.big {
    font-size: 20px;
    padding: 20px;
}

.small-card {
    height: 180px;
}

.featured-card {
    
    border: 1px solid #D4AF37;
}

.feature-item {
    color:var(--dark-blue);
    font-weight: 500;
}

@media (max-width: 767px) {

    /* البطاقات الصغيرة مربعة */
    .jewelry-card.small-card {
        height: auto;
        /* السماح للارتفاع بالتكيف */
        max-height: 180px;
        /* الحد الأقصى للارتفاع */
        aspect-ratio: 1 / 1;
    }

    /* البطاقة الكبيرة */
    .jewelry-card.featured-card {
        height: auto;
        max-height: 300px;
        /* الحد الأقصى للارتفاع */
        aspect-ratio: 16 / 9;
    }

    /* الصور داخل البطاقات */
    .jewelry-card img {
        width: 100%;
        height: 100%;
        max-height: 100%;
        object-fit: cover;
    }

    /* النصوص الكبيرة في overlay */
    .overlay.big {
        font-size: 16px;
        padding: 10px;
    }

    /* نصوص وصف التشكيلة */
    .collection-desc {
        padding: 0 15px;
        text-align: center;
        font-size: 14px;
    }

    /* تقليل التباعد بين البطاقات */
    .row.g-3>[class*="col-"] {
        margin-bottom: 10px;
    }
}

#features .row.justify-content-center .card {
    background-color: #ffffff;
    /* خلفية بيضاء للكارد */
    border-radius: 15px;
    /* حواف دائرية ناعمة */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#features .row.justify-content-center .card:hover {
    transform: translateY(-5px);
    /* تأثير رفع عند المرور */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#features .row.justify-content-center p {
    line-height: 1.6;
    font-size: 1rem;
}
/* ===== Overlay للسلايدر ===== */
.hero {
    position: relative;
}

    .hero::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        top: 0;
        left: 0;
        z-index: 1;
    }

    .hero .content {
        position: relative;
        z-index: 2;
    }

/* ===== المسافات ===== */
section {
    padding: 80px 20px;
}

/* ===== Smooth Scroll ===== */
html {
    scroll-behavior: smooth;
}

/* ===== زر انضم الآن ===== */
.cta-btn {
    background: gold;
    color: black;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}

    .cta-btn:hover {
        transform: scale(1.05);
    }

/* ===== الأيقونات ===== */
.icon svg {
    stroke-width: 2;
}
/* تحسين وضوح النص في السلايدر الرئيسي لموقع جولز */
.hero-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

    .hero-swiper .swiper-slide::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5)) !important;
        z-index: 1;
    }

.hero-swiper .slide-content {
    position: relative;
    z-index: 2 !important;
}
.hero-slider .slide-content {
    max-width: 700px;
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 10px;
    animation: fadeUp 1s ease;
}

.hero-slider h1 {
    line-height: 1.4;
}

.hero-slider p {
    line-height: 1.6;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@media (max-width: 768px) {
    .hero-slider h1 {
        font-size: 26px;
    }

    .hero-slider p {
        font-size: 14px;
    }
}
/* تحسين النص الذهبي السفلي */
.hero-slider p:last-child {
    color: #d4af37;
    font-weight: bold;
    padding: 8px 15px;
    border: 1px solid #d4af37;
    border-radius: 8px;
    background: rgba(212,175,55,0.1);
    display: inline-block;
    margin-top: 10px;
}
/* تحسين النص "هذا هو التحول" باللون الأسود */
.hero-slider p:last-child {
    color: #000;
    font-weight: bold;
    padding: 10px 20px;
    border: 1px solid #000;
    border-radius: 10px;
    background: rgba(0,0,0,0.05);
    display: inline-block;
    margin-top: 10px;
}
/* ===== GOLD TEXT BOX ===== */

.gold-box {
    display: inline-block;
    color: #D4AF37;
    border: 1.5px solid rgba(212, 175, 55, 0.6);
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: rgba(212, 175, 55, 0.05);
    transition: 0.3s ease;
}

    /* Hover effect */
    .gold-box:hover {
        border-color: #D4AF37;
        box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
        transform: translateY(-2px);
    }
/* تنسيق النص ليصبح بصف واحد أو صفين وتجنب تغطية الصورة */
.hero-content, .jolz-hero-text { /* استخدم الكلاس الخاص بحاوية النص لديك */
    max-width: 600px; /* زيادة العرض لمنع النص من النزول تحت بعضه */
    text-align: right; /* محاذاة النص لليمين */
    margin-right: 5%; /* إزاحة النص عن حافة الشاشة */
    line-height: 1.4; /* موازنة المسافة بين الأسطر */
    position: relative;
    z-index: 2; /* لضمان ظهور النص فوق الخلفية بوضوح */
}

    /* تعديل العنوان الرئيسي */
    .hero-content h1 {
        font-size: 2.5rem; /* تصغير الخط قليلاً إذا كان كبيراً جداً */
        white-space: normal; /* السماح للنص بالتمدد */
        margin-bottom: 20px;
    }

/* لتحسين العرض على الموبايل */
@media (max-width: 768px) {
    .hero-content {
        max-width: 90%;
        margin: 0 auto;
        text-align: center;
    }
}
/* تعديل النص لمنعه من التكدس فوق بعضه ولإزاحته عن الوجوه */
.hero-content,
.elementor-widget-container h1,
.jolz-title-container {
    max-width: 850px !important; /* زيادة العرض للسماح للكلمات بالبقاء بجانب بعضها */
    width: 100% !important;
    display: block !important;
    text-align: right !important; /* محاذاة لليمين */
    direction: rtl !important;
    margin-right: 20px !important; /* إزاحة بسيطة عن الحافة اليمنى */
    line-height: 1.2 !important; /* تقليل المسافة الرأسية بين الأسطر */
}

    /* تكبير حجم الخط ليتناسب مع العرض الجديد */
    .hero-content h1 {
        font-size: 48px !important;
        white-space: nowrap !important; /* هذا السطر يمنع الكلمات من النزول لسطر جديد نهائياً */
    }

/* في حال كان النص طويلاً جداً على الشاشات الصغيرة */
@media (max-width: 1024px) {
    .hero-content h1 {
        white-space: normal !important; /* السماح بالنزول فقط في الشاشات الصغيرة */
        font-size: 32px !important;
        max-width: 100% !important;
    }
}
/* حل مشكلة تكدس النص وتغطيته للصورة */
.hero-content,
.jolz-hero-section .elementor-widget-container,
[data-id="56c9a33"] h1 { /* استخدام معرفات محددة بناءً على شكل التصميم */
    max-width: 60% !important; /* جعل النص يأخذ 60% من عرض الشاشة فقط */
    width: 60% !important;
    margin-right: 20px !important; /* إزاحة النص للحافة اليمنى */
    margin-left: auto !important; /* دفع النص لليمين */
    text-align: right !important;
    direction: rtl !important;
}

    .hero-content h1,
    .jolz-hero-section h1 {
        font-size: 3.5rem !important; /* تكبير الخط ليكون فخماً */
        line-height: 1.2 !important; /* تقليل المسافة العمودية بين الأسطر */
        white-space: normal !important; /* السماح للنص بالتوزع بشكل مريح */
        word-break: keep-all !important; /* منع كسر الكلمات المفردة */
        display: block !important;
    }

    /* تعديل الوصف الصغير أسفل العنوان */
    .hero-content p,
    .jolz-hero-section p {
        max-width: 80% !important;
        margin-right: 0 !important;
        font-size: 1.2rem !important;
    }

/* تنسيق خاص للموبايل لجعل النص في المنتصف لسهولة القراءة */
@media (max-width: 768px) {
    .hero-content,
    .jolz-hero-section .elementor-widget-container {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
        padding: 0 15px;
    }

        .hero-content h1 {
            font-size: 1.8rem !important;
        }
}
/* إجبار الحاوية على التوسع لليمين ومنع تكدس الكلمات */
div.elementor-widget-heading,
div.elementor-widget-text-editor {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important; /* محاذاة لليمين في RTL */
}

/* استهداف العنوان الرئيسي مباشرة */
h1.elementor-heading-title {
    width: 70% !important; /* إعطاء مساحة كبيرة للنص ليظهر بصفين أو ثلاثة بحد أقصى */
    max-width: 800px !important;
    text-align: right !important;
    margin-right: 5% !important; /* إزاحة النص عن حافة الشاشة اليمين */
    margin-left: auto !important;
    line-height: 1.2em !important; /* تقليل المسافة بين الأسطر لكي لا يغطي الوجوه */
    display: block !important;
}

/* منع الكلمات من الانكسار بشكل خاطئ */
.elementor-widget-container {
    text-align: right !important;
    direction: rtl !important;
}

/* إذا كنت تستخدم حاوية (Container) من النوع الجديد في إلمنتور */
.elementor-element.elementor-widget-empty,
.elementor-widget-heading .elementor-widget-container {
    margin: 0 !important;
    padding: 0 !important;
}
/* استهداف مباشر لكل العناوين داخل قسم الهيرو لفك تكدس الكلمات */
section.elementor-section.elementor-top-section h1,
.elementor-heading-title {
    display: block !important;
    width: 65% !important; /* النص بياخد 65% من العرض عشان ما يغطي الوجوه */
    max-width: 900px !important;
    text-align: right !important;
    margin-right: 50px !important; /* إزاحة النص لليمين */
    margin-left: auto !important; /* دفع النص لليمين تماماً */
    line-height: 1.2 !important; /* تقليل المسافة بين الأسطر */
    white-space: normal !important;
}

/* تعديل الحاوية الأم اللي خانقة النص */
.elementor-column-wrap.elementor-element-populated,
.elementor-widget-wrap.elementor-element-populated {
    justify-content: flex-start !important; /* محاذاة العناصر لليمين */
    align-content: flex-start !important;
}
/* --- حل مشكلة تنسيق نص الهيرو في جولز --- */

/* 1. استهداف الحاوية الرئيسية للنص لدفعها لليمين */
.jolz-hero-section .elementor-column-wrap,
.jolz-hero-section .elementor-widget-wrap,
main header + section .elementor-container > .elementor-row > .elementor-column {
    display: flex !important;
    justify-content: flex-start !important; /* محاذاة كل العناصر لليمين */
    align-content: flex-start !important;
}

/* 2. استهداف صندوق النص نفسه لتصغير عرضه */
.jolz-hero-section .elementor-widget-heading,
.jolz-hero-section .elementor-widget-text-editor {
    width: 65% !important; /* النص سيحتل 65% فقط من عرض الشاشة */
    max-width: 900px !important;
    margin-right: 50px !important; /* إزاحة النص عن الحافة اليمنى للشاشة */
    margin-left: auto !important; /* دفع الصندوق لليمين تماماً */
}

/* 3. تعديل حجم النص الكبير وتصغيره */
.jolz-hero-section h1,
h1.elementor-heading-title {
    font-size: 38px !important; /* تصغير حجم الخط ليتناسب */
    line-height: 1.25 !important; /* ضبط المسافة بين الأسطر */
    text-align: right !important;
    direction: rtl !important;
    margin-top: 20px !important;
    white-space: normal !important; /* السماح بتوزيع الأسطر */
}

/* 4. تعديل النص الصغير الأسفل */
.jolz-hero-section .elementor-text-editor {
    font-size: 16px !important;
    text-align: right !important;
    margin-right: 0 !important;
}

/* 5. تنسيق خاص للشاشات الصغيرة */
@media (max-width: 768px) {
    .jolz-hero-section .elementor-widget-heading {
        width: 90% !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .jolz-hero-section h1 {
        font-size: 26px !important;
    }
}
/* جعل النص يمتد بعرض الصفحة ويمنع التكدس العمودي */
h1.elementor-heading-title,
.hero-content h1,
.jolz-hero-section h1 {
    width: 100% !important; /* النص يأخذ كامل عرض الحاوية */
    max-width: 100% !important; /* إلغاء أي تحديد للعرض */
    display: block !important;
    white-space: normal !important; /* السماح للنص بالتمدد طبيعياً */
    text-align: right !important; /* محاذاة لليمين */
    font-size: 42px !important; /* تصغير الخط قليلاً ليناسب العرض */
    line-height: 1.3 !important; /* مسافة مريحة بين الأسطر */
}

/* إلغاء تضييق الحاوية التي تحتوي النص */
.elementor-column, .elementor-widget-wrap {
    width: 100% !important;
    max-width: 100% !important;
}
h1 span {
    display: block;
}

    /* منع السطر الثاني من الانقسام */
    h1 span:last-child {
        white-space: nowrap;
    }
h1 {
    line-height: 1.3;
    word-break: keep-all;
}

    h1 span {
        display: block;
    }

        h1 span:last-child {
            font-size: 0.95em;
        }
        h1 span:last-child {
            font-size: 0.92em;
            padding-right: 5px;
        }
.partners-section {
    overflow: hidden;
    padding: 50px 0;
    background: #f8f8f8;
}

.partners-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1c2d4a;
}

.merchants-swiper {
    padding-bottom: 40px;
}

.merchant-logo-card {
    height: 110px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

    .merchant-logo-card img {
        max-width: 100%;
        max-height: 70px;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
    }

@media (max-width:768px) {
    .merchant-logo-card {
        height: 80px;
        padding: 10px;
        border-radius: 12px;
    }

        .merchant-logo-card img {
            max-height: 48px;
        }
}