* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
a { text-decoration: none; } /* إزالة الخط تحت جميع الروابط */

html { scroll-behavior: smooth; }

:root {
    /* Default (Dark Mode) Variables */
    color-scheme: dark; /* يخبر المتصفح أن الصفحة داكنة لتحسين الأداء البصري */
    --primary-text-color: #FFFFFF; /* White text for dark mode */
    --secondary-text-color: #E0E0E0; /* Lighter white for secondary text */
    --accent-color: #0071e3; /* Apple Blue (for light mode buttons if needed) */
    --purple-accent: #8A2BE2; /* Light purple for accents */
    --dark-bg: #000000; /* Deep black background */
    --card-bg-dark: rgba(29, 29, 31, 0.7); /* Dark card background with transparency */
    --card-border-dark: rgba(255, 255, 255, 0.1); /* Light border for dark cards */
    
    /* Light Mode specific variables (will be overridden by media query) */
    --light-bg: #F5F5F7; /* Light background for light mode */
    --card-bg-light: rgba(255, 255, 255, 0.7); /* Light card background with transparency */
    --card-border-light: rgba(0, 0, 0, 0.1); /* Dark border for light cards */

    --text-gray: #86868b;
}

body {
    background: #0d0d0f; /* لون خلفية أفتح قليلاً من الأسود الصرف */
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(138, 43, 226, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(0, 113, 227, 0.05) 0%, transparent 40%);
    background-attachment: fixed; /* لجعل الخلفية ثابتة أثناء التمرير */
    color: var(--primary-text-color);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.72); /* Dark transparent */
    backdrop-filter: saturate(180%) blur(20px); /* تأثير أبل الكلاسيكي */
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.05); /* ظل خفيف لإبراز الشريط */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

nav .logo {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

nav .logo:hover {
    transform: scale(1.05); /* تكبير الشعار عند التمرير */
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5); /* تأثير توهج بنفسجي خفيف */
}

nav .logo-content {
    display: flex;
    align-items: center;
    gap: 8px; /* مسافة بين الصورة والنص */
}

nav .logo img {
    height: 35px; /* تحجيم الشعار ليناسب ارتفاع الهيدر */
    width: auto;
    display: block;
}

nav .logo span {
    font-weight: 700;
    font-size: 1.4rem; /* حجم أكبر للنص */
    color: var(--primary-text-color);
    letter-spacing: -0.02em; /* تقليل المسافة بين الحروف */
}
nav ul { display: flex; list-style: none; margin-right: auto; /* Push logo and button to ends */ }
nav ul li { margin-left: 25px; }
nav ul li a { text-decoration: none; color: var(--primary-text-color); font-size: 0.9rem; transition: 0.3s; }
nav ul li a:hover { color: var(--purple-accent); }

/* Menu Toggle Styles */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(rgba(13, 13, 15, 0.8), rgba(13, 13, 15, 0.8)), 
                url('iPhone 15 Pro Max.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* يعطي تأثير Parallax بسيط عند التمرير */
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Light border */
}

.hero .container {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.hero h1 { 
    font-size: 3.5rem; font-weight: 700; margin-bottom: 15px; letter-spacing: -0.015em; 
    background-image: linear-gradient(45deg, #a855f7, #6366f1); /* تدرج لوني بنفسجي-أزرق */
    -webkit-background-clip: text; /* قص الخلفية على شكل النص */
    -webkit-text-fill-color: transparent; /* جعل لون النص شفافاً لإظهار التدرج */
}
.hero p { font-size: 1.5rem; color: var(--secondary-text-color); margin-bottom: 30px; max-width: 600px; }

.btn-primary {
    background: linear-gradient(135deg, var(--purple-accent), #6a11cb);
    color: #FFFFFF;
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover { 
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(138, 43, 226, 0.4);
    background: linear-gradient(135deg, #6a11cb, var(--purple-accent));
}

/* تأثير اللمعان (Shimmer Effect) */
.btn-primary::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: none;
}

.btn-primary:hover::after {
    left: 150%;
    transition: 0.7s ease-in-out;
}

/* تنسيق أيقونة السهم داخل الأزرار */
.btn-primary i, .btn-buy i {
    margin-right: 0;
    max-width: 0;
    opacity: 0;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.8rem;
}

.btn-primary:hover i, .btn-buy:hover i {
    margin-right: 8px; /* مسافة بين النص والأيقونة في RTL */
    max-width: 20px;
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--purple-accent); /* Purple text */
    border: 1px solid var(--purple-accent); /* Purple border */
    padding: 13px 34px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover { 
    background: var(--purple-accent);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

/* Trust Icons in Hero */
.trust-icons {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    color: var(--secondary-text-color);
    font-size: 0.9rem;
}
.trust-item-hero i {
    color: var(--purple-accent);
    margin-left: 8px;
}

/* Features */
.features { 
    padding: 80px 0; 
    text-align: center; 
    content-visibility: auto; /* يحسن سرعة التحميل عبر تأجيل رندر الأقسام غير المرئية */
}
.features h2 { margin-bottom: 50px; font-size: 2.5rem; color: var(--primary-text-color); }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.f-card {
    padding: 30px;
    border-radius: 20px;
    background: var(--card-bg-dark); /* Dark card background */
    position: relative;
    backdrop-filter: blur(15px) saturate(180%); /* Glassmorphism */
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    border: var(--card-border-dark); /* Light border */
    transition: all 0.4s ease-out;
    color: var(--primary-text-color); /* White text */
}

.f-card:hover {
    z-index: 10;
    transform: translateY(-8px) scale(1.05); /* إضافة تأثير التكبير لكروت الخدمات */
    box-shadow: 0 15px 45px rgba(138, 43, 226, 0.3); /* توهج بنفسجي خفيف */
    border-color: rgba(138, 43, 226, 0.4); /* تغيير لون الحواف للبنفسجي عند التمرير */
}

.f-card span { font-size: 2.5rem; display: block; margin-bottom: 15px; }
.f-card span i { color: var(--purple-accent); } /* Purple icons */
.f-card h3 { margin-bottom: 10px; color: var(--primary-text-color); }
.f-card p { color: var(--secondary-text-color); font-size: 0.9rem; }

/* Products */
.products { 
    padding: 80px 0; 
    content-visibility: auto;
}
.products h2 { text-align: center; margin-bottom: 50px; font-size: 2.5rem; color: var(--primary-text-color); }
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product {
    background: var(--card-bg-dark); /* Dark card background */
    backdrop-filter: blur(15px) saturate(180%); /* Glassmorphism */
    padding: 40px;
    position: relative;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: var(--card-border-dark); /* Light border */
    transition: all 0.4s ease-out;
    color: var(--primary-text-color); /* White text */
}

.product:hover { 
    z-index: 10;
    transform: translateY(-15px) scale(1.05); /* زيادة نسبة التكبير لتكون أوضح */
    box-shadow: 0 25px 60px rgba(138, 43, 226, 0.4); /* توهج بنفسجي أوضح للمنتجات */
    border-color: rgba(138, 43, 226, 0.5); /* إبراز حواف المنتج باللون البنفسجي */
}

/* Special Offer Banner & Countdown */
.special-offer-banner {
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.special-offer-banner p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary-text-color);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.timer-block span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--purple-accent);
}

.timer-block label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

.product .p-img { height: 250px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.product img { max-height: 100%; max-width: 100%; }
.product h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--primary-text-color); }
.price { color: var(--secondary-text-color); font-weight: 500; margin-bottom: 20px; }
.btn-buy {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none; /* No border */
    background: linear-gradient(135deg, #1d1d1f, #000000);
    color: #FFFFFF; /* White text */
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-buy:hover { 
    background: var(--purple-accent); 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.3);
}

/* WhatsApp Buttons Styles */
.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: scale(1.02);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 2000;
    transition: all 0.3s ease;
    text-decoration: none;
    /* دمج حركة النبض مع حركة الاهتزاز */
    animation: whatsapp-pulse 2s infinite, whatsapp-wiggle 5s infinite 2s;
}

.whatsapp-label {
    position: absolute;
    right: 75px; /* المسافة من الزر في RTL */
    background: white;
    color: #075e54; /* لون واتساب الغامق للنص */
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.8);
    }
    /* إضافة توهج أكبر في المنتصف */
    40% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* حركة اهتزاز لجذب الانتباه كل فترة */
@keyframes whatsapp-wiggle {
    0%, 90%, 100% { transform: rotate(0); }
    92% { transform: rotate(-15deg) scale(1.1); }
    94% { transform: rotate(15deg) scale(1.1); }
    96% { transform: rotate(-15deg) scale(1.1); }
    98% { transform: rotate(15deg) scale(1.1); }
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    background-color: #20ba5a;
}

/* Trust Indicators Section */
.trust-indicators {
    padding: 60px 0;
    background: transparent;
    content-visibility: auto;
    text-align: center;
    color: var(--primary-text-color);
}
.trust-indicators h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-text-color);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    background: var(--card-bg-dark); /* Dark card background */
    backdrop-filter: blur(8px);
    border: var(--card-border-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.trust-item i {
    font-size: 3rem;
    color: var(--purple-accent); /* Purple icon */
    margin-bottom: 15px;
}
.trust-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-text-color);
}
.trust-item p {
    font-size: 0.9rem;
    color: var(--secondary-text-color);
}

/* Testimonials / Reviews Section */
.reviews { 
    padding: 80px 0; 
    overflow: hidden; 
    content-visibility: auto;
}
.reviews h2 { text-align: center; margin-bottom: 50px; font-size: 2.5rem; color: var(--primary-text-color); }

.reviews-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* لإخفاء الشريط في فيرفوكس */
    -ms-overflow-style: none; /* لإخفاء الشريط في IE */
}

.reviews-slider::-webkit-scrollbar {
    display: none; /* لإخفاء الشريط في كروم وسفاري */
}

.review-card {
    flex: 0 0 350px;
    scroll-snap-align: center;
    background: var(--card-bg-dark);
    backdrop-filter: blur(15px) saturate(180%);
    border: var(--card-border-dark);
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--primary-text-color);
}

.review-card:hover { transform: scale(1.02); }

.review-text { font-style: italic; font-size: 1.1rem; color: var(--secondary-text-color); margin-bottom: 20px; }
.review-user { display: flex; align-items: center; gap: 15px; }
.review-user img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.user-info h4 { font-size: 1rem; margin-bottom: 2px; color: var(--primary-text-color); }
.user-info span { font-size: 0.8rem; color: var(--text-gray); } /* Keep gray for subtle info */

.stars { color: #ffcc00; margin-bottom: 10px; font-size: 0.9rem; }

@media (max-width: 768px) {
    .review-card { flex: 0 0 85%; } /* تكبير الكارت في الموبايل ليملأ الشاشة */
    .reviews-slider { padding-left: 20px; padding-right: 20px; }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #f5f5f7;
        --bg-light: #161617;
    }
    body { background-color: #000; color: #f5f5f7; }
    header { background: rgba(0, 0, 0, 0.72); border-bottom: 1px solid rgba(255,255,255,0.1); }
    .f-card, .product { background: #1d1d1f; color: #fff; }
    .reviews { background: #000; }
    .review-card { background: #1d1d1f; }
    .review-text { color: #f5f5f7; }
    .hero { background: radial-gradient(circle at 50% 0%, #1d1d1f 0%, #000000 100%); }
}

/* CTA & Footer */
/* Footer */
footer {
    padding: 60px 0 30px; /* Adjust padding */
    background: var(--dark-bg); /* Use dark background variable */
    color: var(--secondary-text-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Consistent border */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    text-align: right; /* Align text to the right for RTL */
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-text-color);
    margin-bottom: 20px;
}

.footer-content h3 {
    font-size: 1.2rem;
    color: var(--primary-text-color);
    margin-bottom: 20px;
    position: relative;
}

/* Underline effect for footer headings */
.footer-content h3::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background-color: var(--purple-accent);
}

.footer-content ul {
    list-style: none;
}

.footer-content ul li {
    margin-bottom: 10px;
}

.footer-content ul li a {
    color: var(--secondary-text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content ul li a:hover {
    color: var(--purple-accent);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align icons to the right for RTL */
    gap: 10px;
}

.footer-contact p a {
    color: inherit;
    transition: color 0.3s ease;
}

.footer-contact p a:hover {
    color: var(--purple-accent);
}

/* تنسيق أيقونة النسخ */
.copy-btn {
    cursor: pointer;
    font-size: 0.85rem;
    margin-right: 10px; /* مسافة بين النص والأيقونة في RTL */
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.copy-btn:hover {
    color: var(--purple-accent);
    transform: scale(1.2); /* تكبير بسيط عند التمرير */
}

.footer-contact p i {
    color: var(--purple-accent);
    font-size: 1.1rem;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end; /* Align social icons to the right for RTL */
    gap: 15px;
}

.social-icons a {
    color: var(--purple-accent); /* Changed to purple accent for brand consistency */
    font-size: 1.5rem;
    display: inline-block; /* ضروري لتطبيق تأثير التحويل (Transform) */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* أنيميشن مرن وسلس */
}

.social-icons a:hover {
    color: var(--purple-accent);
    transform: scale(1.3); /* تكبير أيقونات التواصل الاجتماعي عند التمرير */
}

.copyright {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .product-grid { grid-template-columns: 1fr; }

    nav .logo img {
        height: 45px; /* زيادة حجم الشعار في نسخة الموبايل */
    }
    nav .logo span {
        font-size: 1.6rem; /* زيادة حجم كلمة Apple في نسخة الموبايل */
    }

    .menu-toggle { display: block; }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease;
        z-index: 1000;
    }

    nav ul.active { right: 0; }

    nav ul li {
        margin: 20px 0;
        margin-left: 0;
    }

    nav ul li a { font-size: 1.5rem; }

    /* انيميشن تحويل الهامبرغر إلى X */
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center; /* Center align for smaller screens */
    }
    .footer-content h3::after {
        left: 50%;
        transform: translateX(50%);
        right: auto; /* Reset right for centering */
    }
    .footer-contact p, .social-icons {
        justify-content: center; /* Center align for smaller screens */
    }
}

/* Media Query for smaller mobile devices (e.g., max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px; /* تقليل المسافة الجانبية للمحتوى */
    }

    .hero {
        padding: 120px 0 80px; /* تقليل المسافة الرأسية لقسم الهيرو */
    }

    .hero h1 {
        font-size: 2rem; /* تقليل حجم الخط لعنوان الهيرو */
    }

    .hero p {
        font-size: 1.2rem; /* تقليل حجم الخط للوصف في الهيرو */
    }
    
    .countdown-timer {
        gap: 10px;
    }
    .timer-block {
        min-width: 60px;
    }
    .timer-block span {
        font-size: 1.8rem;
    }

    .trust-icons {
        flex-direction: column; /* جعل أيقونات الثقة تتكدس عمودياً */
        gap: 15px; /* تقليل المسافة بينها */
        margin-top: 30px;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 25px; /* تقليل حجم أزرار الهيرو */
        font-size: 0.9rem;
    }

    .whatsapp-float, .back-to-top {
        bottom: 20px;
        left: 20px; /* تعديل موقع الأزرار العائمة لتجنب التداخل */
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .whatsapp-float {
        right: 20px; /* إعادة ضبط زر الواتساب لليمين */
        left: auto;
    }

    .f-card, .product, .review-card {
        padding: 20px; /* تقليل المسافة الداخلية للكروت */
    }

    .features h2, .products h2, .trust-indicators h2, .reviews h2 {
        font-size: 2rem; /* تقليل حجم العناوين الرئيسية */
    }

    .footer-logo {
        font-size: 1.5rem; /* تقليل حجم شعار الفوتر */
    }

    .footer-content h3 {
        font-size: 1.1rem; /* تقليل حجم عناوين الفوتر الفرعية */
    }
}
/* Toast Notification - رسالة التأكيد عند النسخ */
#toast {
    visibility: hidden;
    min-width: 200px;
    background-color: var(--purple-accent);
    color: #fff;
    text-align: center;
    border-radius: 50px;
    padding: 12px 24px;
    position: fixed;
    z-index: 3000;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
}
#toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}

/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--purple-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    border: none;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background-color: #6a11cb;
    transform: translateY(-5px);
}