/* =======================================
   1. RESET & GENERAL STYLES
======================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f5f7fb;
    color: #111;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/* =======================================
   2. TOP BAR
======================================= */
.top-bar {
    background: #07152f;
    color: #fff;
    font-size: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-right {
    display: flex;
    gap: 25px;
}

.top-right span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-right i {
    color: #f4b63f;
}

/* =======================================
   3. HEADER & LOGO
======================================= */
header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #081a3a;
    backdrop-filter: blur(10px);
}

.nav {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.logo-img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.logo h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
}

.logo p {
    font-size: 12px;
    color: #ddd;
}

.menu {
    display: flex;
    gap: 35px;
}

.menu a {
    color: #fff;
    font-weight: 700;
    transition: .3s;
}

.menu a:hover {
    color: #f4b63f;
}

.header-icons {
    display: flex;
    gap: 15px;
}

.header-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    transition: .3s;
}

.header-icons a:hover {
    background: #f4b63f;
    color: #081a3a;
}

.header-icons span {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f4b63f;
    color: #081a3a;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =======================================
   4. HERO SECTION
======================================= */
.hero {
    position: relative;
    min-height: 850px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(4,17,40,.20), rgba(4,17,40,.75)), url("image/hero-products.png");
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-bottom-left-radius: 180px;
    border-bottom-right-radius: 180px;
}

.hero::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: #0d5fff;
    filter: blur(250px);
    opacity: .25;
    top: -150px;
    left: -150px;
}

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

.hero-text h4 {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: 78px;
    line-height: 1.2;
    color: white;
    font-weight: 900;
    margin-bottom: 25px;
}

.hero-text h1 span {
    color: #f4b63f;
    display: block;
}

.hero-text p {
    font-size: 22px;
    line-height: 2;
    color: #ddd;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.btn-primary {
    padding: 16px 40px;
    background: #f4b63f;
    color: #081a3a;
    font-weight: 800;
    border-radius: 12px;
    transition: .3s;
}

.btn-secondary {
    padding: 16px 40px;
    border: 2px solid white;
    color: white;
    font-weight: 700;
    border-radius: 12px;
}

.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.feature {
    background: rgba(255,255,255,.08);
    padding: 18px 22px;
    border-radius: 15px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(8px);
}

.feature i {
    color: #f4b63f;
    font-size: 20px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
}

/* =======================================
   5. CATEGORIES
======================================= */
.categories {
    padding: 40px 0 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 900;
    color: #081a3a;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 18px;
    color: #666;
}

.categories-grid {
    background: #fff;
    border-radius: 35px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
    overflow-x: auto;
}

.cat-card {
    min-width: 170px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 25px;
    padding: 25px 15px;
    text-align: center;
    transition: .35s;
    cursor: pointer;
}

.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,.1);
    border-color: #f4b63f;
}

.cat-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin: auto;
    margin-bottom: 15px;
}

.cat-card h3 {
    font-size: 20px;
    color: #081a3a;
    margin-bottom: 5px;
}

.cat-card p {
    font-size: 13px;
    color: #777;
}

/* =======================================
   6. FEATURES BAR
======================================= */
.features-bar {
    background: #fff;
    border: 1px solid #e9edf3;
    border-radius: 18px;
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,.04);
    margin: 50px auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.feature-item i {
    font-size: 32px;
    color: #0b1f4f;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0b1f4f;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
}

.divider {
    width: 1px;
    height: 50px;
    background: #e5e7eb;
}

/* =======================================
   /* =======================================
7. PRODUCTS SECTION (MOCKUP STYLE)
======================================= */
.products {
    padding: 60px 0;
    background: #f8fafc;
}

/* تنسيق الهيدر بالكامل */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    border-bottom: 2px solid #eef2f6; /* خط سفلي ناعم يحدد القسم */
    padding-bottom: 15px;
}

/* تنسيق عنوان "الأكثر مبيعاً" */
.products-header .main-title {
    font-size: 26px;
    font-weight: 800;
    color: #0b1a30;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

/* حركة ذكية: خط ملون تحت كلمة الأكثر مبيعاً */
.products-header .main-title::after {
    content: '';
    position: absolute;
    bottom: -17px;
    right: 0;
    width: 60px;
    height: 3px;
    background: #25D366; /* متناسق مع لون الواتساب */
    border-radius: 2px;
}

.products-header .arrow-icon {
    font-size: 20px;
    color: #25D366; /* تحويل لون الأيقونة ليعطي لمسة حيوية */
}

/* تحويل "عرض جميع المنتجات" إلى زر أنيق ومرتب */
.products-header .view-all {
    color: #0b1a30;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #0b1a30;
    border-radius: 30px; /* زوايا دائرية بالكامل */
    transition: all 0.3s ease;
}

.products-header .view-all:hover {
    background: #0b1a30;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 26, 48, 0.15);
}

.productSwiper {
    padding: 10px 0 40px 0 !important;
}

/* تنسيق الكارت */
.product-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 20px;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.product-img-box {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.product-img-box img {
    max-height: 100%;
    object-fit: contain;
}

.product-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #0b1a30;
    margin-bottom: 15px;
    height: 44px;
    overflow: hidden;
    line-height: 1.5;
}

/* الفوتر وزر الواتساب الجديد */
.card-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-sizing: border-box;
    border: none;
}

.whatsapp-btn:hover {
    background-color: #1ebd57;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    font-size: 18px;
}

/* أسهم السوايبير */
.productSwiper .swiper-button-next,
.productSwiper .swiper-button-prev {
    color: #0b1a30;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.productSwiper .swiper-button-next:after,
.productSwiper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

/* =======================================
   5. PROMO BANNERS (تنسيق البانرات الترويجية)
======================================= */
.promo-banners {
    padding: 60px 0;
    background: #f8fafc;
}

/* إذا كان القسم يحتوي على 3 بانرات */
.promo-banners .container.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* إذا كان القسم يحتوي على 4 بانرات */
.promo-banners .container.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px;
}

.promo-banners .banner {
    background: linear-gradient(135deg, #092040, #051226);
    border-radius: 20px;
    padding: 30px 25px;
    min-height: 220px;
    display: flex;
    justify-content: space-between;
    /* تغيير المحاذاة لتتمدد العناصر عمودياً وتأخذ الصورة الحجم المتاح */
    align-items: center; 
    gap: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-banners .banner:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(7, 21, 47, 0.15);
}

/* تنسيق النصوص داخل البانر */
.banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
}

.promo-banners .banner h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
}

.promo-banners .banner p {
    color: #adb5bd;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.4;
}

/* --- التعديل الجديد الخاص بالصورة --- */
.promo-banners .banner img, 
.promo-banners .banner-image {
    max-width: 12000px;      /* التحكم في أقصى عرض للصورة لتظل متناسقة */
    height: auto;          /* الحفاظ على أبعاد الصورة بدون تشويه */
    object-fit: contain;   /* جعل الصورة واضحة بالكامل دون قص أجزاء منها */
    flex-shrink: 0;        /* منع النص من ضغط الصورة أو تصغيرها */
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3)); /* إضافة ظل خفيف لبروز الصورة */
}
/* زر تسوق الآن / استكشف */
.btn-explore, 
.banner a {
    display: inline-block;
    padding: 10px 28px;
    background: #f4b63f;
    color: #0b1a30;
    font-weight: 700;
    border-radius: 8px;
    font-size: 14px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-explore:hover, 
.banner a:hover {
    background: #fff;
    transform: scale(1.03);
}

/* تنسيق صور المنتجات داخل البانر */
.promo-banners .banner img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.promo-banners .banner:hover img {
    transform: scale(1.08) rotate(3deg);
}

/* =======================================
   تجاوب القسم مع الشاشات الصغيرة (Responsive)
======================================= */
@media(max-width: 1200px) {
    .promo-banners .container.grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media(max-width: 992px) {
    .promo-banners .container.grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .promo-banners .container.grid-3,
    .promo-banners .container.grid-4 {
        grid-template-columns: 1fr !important;
    }
    
    .promo-banners .banner {
        padding: 25px;
        min-height: auto;
    }
    
    .promo-banners .banner h2 {
        font-size: 20px;
    }
}

/* =======================================
   9. WHY US SECTION (REELS STYLE)
======================================= */
.why-us {
    background: #f8fafc;
    padding: 60px 0;
}

.why-wrapper {
    display: grid;
    /* تم جعل المساحة متساوية 50% للفيديو و 50% للكلام ليعطي مساحة أكبر للعرض */
    grid-template-columns: 1fr 1fr; 
    gap: 50px;
    align-items: center;
}

/* التعديل الجديد لعرض الفيديو */
.why-video {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    width: 100%;
    max-width: 420px; /* تم زيادة العرض من 340px إلى 420px ليصبح أعرض وأوضح */
    height: 520px;    /* تناسق الارتفاع مع العرض الجديد */
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(11, 31, 79, 0.15);
    border: 4px solid #fff;
}

/* لضمان تعبئة الفيديو للمساحة الطولية بالكامل وبدون تشويه */
.why-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* زر تشغيل ناعم ومناسب للريلز */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px); /* تأثير زجاجي خلف الزر */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: #0b2545;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn:hover i {
    color: #fff;
}

.play-btn i {
    font-size: 24px;
    color: #0b1f4f;
    margin-right: -4px; /* تعديل بسيط لوزن أيقونة التشغيل البصرية في المركز */
}

.why-content h2 {
    font-size: 32px;
    color: #081a3a;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.4;
}

.why-content p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
}

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-icon-box {
    width: 54px;
    height: 54px;
    border: 1px dashed #0b2545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: #fff;
    transition: all 0.3s ease;
}

.why-item:hover .why-icon-box {
    background: #0b2545;
    border-style: solid;
}

.why-item:hover .why-icon-box i {
    color: #fff;
}

.why-item i {
    font-size: 18px;
    color: #0b2545;
    transition: all 0.3s ease;
}

.why-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0b1a30;
    margin-bottom: 4px;
}

.why-item span {
    font-size: 12px;
    color: #6c757d;
}

/* متجاوب مع الشاشات الصغيرة للهواتف */
@media (max-width: 768px) {
    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-video {
        height: 480px; /* تقليل الارتفاع قليلاً على الموبايل لتوفير مساحة */
    }
    .why-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}


/* =======================================
   10. MAP SECTION
======================================= */
.location-map {
    padding: 60px 0;
    background: #fff; /* خلفية بيضاء ليفصل عن الأقسام الرمادية */
}

/* تنسيق رأس قسم الخريطة */
.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-header .main-title {
    font-size: 28px;
    font-weight: 800;
    color: #0b1a30;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.map-header .main-title i {
    color: #25D366; /* لون الأيقونة متناسق مع هوية الموقع الحيوية */
}

.map-header .map-subtitle {
    color: #6c757d;
    font-size: 15px;
}

/* حاوية الخريطة لتصبح مرنة وحداثية */
.map-wrapper {
    width: 100%;
    height: 450px; /* ارتفاع مناسب جداً لرؤية واضحة */
    border-radius: 24px; /* حواف دائرية فخمة مثل الفيديو والكروت */
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(11, 31, 79, 0.08); /* ظل ناعم */
    border: 4px solid #fff; /* إطار أبيض جمالي */
}

/* جعل الـ iframe يملأ الحاوية بالكامل ويتجاوب مع الموبايل */
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* متجاوب مع الهواتف الذكية */
@media (max-width: 768px) {
    .location-map {
        padding: 40px 0;
    }
    .map-header .main-title {
        font-size: 24px;
    }
    .map-wrapper {
        height: 320px; /* تقليل الارتفاع على الموبايل لسهولة التصفح */
    }
}

/* =======================================
   11. FOOTER
======================================= */
.footer {
    background: #020b18;
    padding: 60px 0 20px;
    direction: rtl;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-about {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-img-footer {
    width: 190px;
    height: auto;
    object-fit: contain;
}

.footer-logo h2 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.footer-logo p {
    font-size: 12px;
    color: #cbd5e1;
}

.footer-desc {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 25px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: #cbd5e1;
    font-size: 14px;
    transition: .3s;
}

.footer-col a:hover {
    color: #f4b63f;
}

.contact-list li {
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.contact-list i {
    color: #6c757d;
    width: 20px;
    font-size: 16px;
}

.payment-methods {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.payment-methods img {
    height: 24px;
    background: #fff;
    padding: 2px;
    border-radius: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .3s;
}

.social-links a:hover {
    background: #f4b63f;
    color: #081a3a;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
}

.footer-bottom p {
    color: #cbd5e1;
    font-size: 14px;
}

/* =======================================
   12. GLOBAL RESPONSIVE BUTTONS & EFFECTS
======================================= */
.hidden {
    opacity:0;
    transform:translateY(50px);
    transition:.8s;
}

.show {
    opacity:1;
    transform:translateY(0);
}

.top-btn {
    position:fixed;
    left:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#f4b63f;
    color:#081a3a;
    font-size:20px;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:.4s;
    z-index:999;
}

.top-btn.active {
    opacity:1;
    visibility:visible;
}

/* =======================================
   13. MEDIA QUERIES (RESPONSIVE)
======================================= */
@media(max-width:1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:992px) {
    .hero-content {
        grid-template-columns:1fr;
        text-align:center;
    }
    .hero-text h1 { font-size:55px; }
    .hero-features { justify-content:center; }
    .menu { display:none; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .why-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .why-features { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width:768px) {
    .hero { min-height:auto; padding:100px 0; }
    .hero-text h1 { font-size:42px; }
    .hero-text p { font-size:18px; }
    .hero-buttons { flex-direction:column; }
    .top-bar .container { justify-content:center; }
    .top-right { flex-direction:column; align-items:center; }
    .features-bar { flex-direction:column; gap:20px; }
    .divider { width:100%; height:1px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo, .contact-list li, .social-links, .payment-methods { justify-content: center; }
    .footer-about { align-items: center; }
}

@media(max-width:576px) {
    .grid-4, .why-features { grid-template-columns: 1fr; }
    .newsletter-box { flex-direction: column; text-align: center; }
}

.card-footer {
    width: 100%;
    margin-top: 15px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25D366; /* لون واتساب الرسمي */
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-sizing: border-box;
}

.whatsapp-btn:hover {
    background-color: #1ebd57; /* لون أغمق عند التمرير */
    color: #fff;
    transform: translateY(-2px);
}

.whatsapp-btn i {
    font-size: 18px;
}