.rehla-top-bar {
  display: none;
}


 /* شركاؤنا - جعل اللوجوهات تغطي مساحة السلايد بشكل منظم */

/* نحدد ارتفاع ثابت لكل سلايد (تقدري تزودي/تنقصي) */
.rehla-links .swiper-slide .aspect-square {
    height: 180px;          /* عدليه مثلاً لـ 200 أو 220 لو حبيتي */
    width: 100%;
    display: block;
}

/* نخلي الديف اللي عليه الخلفية يملى المساحة كلها */
.rehla-links .swiper-slide .aspect-square > a > div {
    width: 100%;
    height: 100%;
    display: block;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;  /* لو عايزة تغطي وتقص اللوجو استخدمي cover بدل contain */
}

/* تأثير بسيط عند الهوفر (اختياري) */
.rehla-links .swiper-slide .aspect-square > a > div {
    transition: transform .3s ease;
}

.rehla-links .swiper-slide .aspect-square:hover > a > div {
    transform: scale(1.03);
}

.rehla-text-with-image-bg {
    background: linear-gradient(
        to bottom,
        #b89872 0%,   /* top – light brown/beige */
        #8a6a45 40%,  /* mid – medium brown */
        #5c4327 100%  /* bottom – dark brown */
    ) !important;
}

.rehla-text-with-image-text {
  line-height: 32px;
}
.rehla-default-product.rehla-fixed-products.item {
  margin: 24px 0px;
}
h1,
h2,
h3 {
    font-weight: 700 !important;
  margin-bottom: 16px;
}

.rehla-reviews::before {
    content: "آراء عملاءنا";
    display: block;
    text-align: center;
    font-size: 2rem;         /* حجم العنوان */
    font-weight: 700;        /* Bold */
    color: #000;          /* لون الهوية */
    margin-bottom: 20px;     /* مسافة بين العنوان والسلايدر */
    margin-top: 50px;     /* مسافة بين العنوان والسلايدر */

    padding-top: 20px;
}

.lg\:text-4xl{display: none;}

.logo img {
    width: 60% !important;
    height: auto !important;
}

.py-20 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

/* شكل الدائرة */
.social-link {
    background-color: #0E2F1A !important; /* خلفية */
    color: #ffffff !important;           /* لون الأيقونة */
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;                  /* دائرة */
    font-size: 20px;
    transition: all 0.3s ease;
}

/* تغيير اللون عند الهوفر */
.social-link:hover {
    background-color: #144225 !important; /* درجة أفتح */
    transform: translateY(-3px);
}

/* التأكد أن أيقونات سلة تأخذ اللون الأبيض */
.social-link i {
    color: #ffffff !important;
}

/* ====== Contact Icons Styling (WhatsApp - Phone - Email) ====== */

.s-contacts-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    transition: all .3s ease;
}

/* دائري للأيقونة */
.s-contacts-item .s-contacts-icon {
    background-color: #0E2F1A !important;
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s ease;
}

/* لون الأيقونة */
.s-contacts-item .s-contacts-icon svg,
.s-contacts-item .s-contacts-icon i {
    fill: #ffffff !important;
    color: #ffffff !important;
    width: 22px;
    height: 22px;
}

/* Hover */
.s-contacts-item:hover .s-contacts-icon {
    background-color: #144225 !important; /* أفتح شوي */
    transform: translateY(-2px);
}
/* Wrapper background */
.w-full.flex.justify-center.mb-2 {
    background: linear-gradient(
        to bottom,
        #b89872 0%,     /* light beige */
        #8a6a45 45%,    /* mid brown */
        #5c4327 100%    /* dark brown */
    ) !important;
    padding: 14px 0;
}

/* Text style */
.w-full.flex.justify-center.mb-2 p {
    color: #fff !important;       /* brand brown */
    font-weight: 600;                /* semibold */
    font-size: 15px;
    margin: 0;
}

/* Link */
.w-full.flex.justify-center.mb-2 a {
    color: #fff !important;
    font-weight: 700;
    text-decoration: underline transparent;
    transition: .3s;
}

/* Hover effect */
.w-full.flex.justify-center.mb-2 a:hover {
    text-decoration-color: #5B452C;
    opacity: 0.9;
}