/* 
* Landing Page Styles
* RTL Arabic Style for eCommerce Store Service
*/

/* --- Base Styles --- */
:root {
    --primary-color: #1a73e8;
    --primary-dark: #1557b0;
    --primary-light: #e8f4ff;
    --secondary-color: #4285f4;
    --text-color: #333333;
    --light-text: #777777;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #5f6368;
    --border-color: #e0e0e0;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
}

.section-header p {
    font-size: 18px;
    color: var(--light-text);
}

.primary-btn, .secondary-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    font-size: 16px;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.4);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.6);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Header Styles --- */
header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to left, var(--primary-color), var(--secondary-color));
    opacity: 0.8;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
}

.logo:hover {
    color: var(--primary-dark);
}

.logo h1 {
    font-size: 28px;
    margin-bottom: 0;
    color: var(--primary-dark);
}

.logo span {
    color: var(--primary-color);
    font-weight: 800;
}

nav {
    margin-right: 30px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    font-size: 17px;
    padding: 10px 5px;
    position: relative;
    text-decoration: none;
    display: block;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    right: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

nav ul li a.cta-btn {
    color: var(--white);
    font-weight: 600;
    background-color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    margin-right: 0;
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

nav ul li a.cta-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.4);
}

nav ul li a.cta-btn:after {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* --- Hero Section --- */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(232, 240, 254, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%),
    url('https://img.freepik.com/free-vector/ecommerce-web-page-concept-illustration_114360-8204.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-left: 50px;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 90%;
    animation: float 6s ease-in-out infinite;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.hero h1 {
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero h2 {
    font-size: 32px;
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero p.price-highlight {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
    position: relative;
    display: inline-block;
}

.hero p.price-highlight:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(26, 115, 232, 0.2), rgba(26, 115, 232, 0.8), rgba(26, 115, 232, 0.2));
    bottom: -5px;
    right: 0;
}

.hero .highlight {
    color: var(--primary-color);
    font-weight: 700;
}

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

/* --- Features Section --- */
.features {
    background: linear-gradient(135deg, rgba(232, 240, 254, 0.3) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(232, 240, 254, 0.3) 100%);
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(26,115,232,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-categories {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-category {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 115, 232, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-category::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-category:hover::before {
    opacity: 0.1;
}

.feature-category h3 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding: 20px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.feature-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.feature-category h3 i {
    color: var(--primary-color);
    margin-left: 15px;
    font-size: 32px;
    vertical-align: middle;
}

.feature-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid rgba(26, 115, 232, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 115, 232, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(26, 115, 232, 0.15);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(26, 115, 232, 0.3);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::before {
    opacity: 0.3;
    animation: pulse 1.5s infinite;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 15px 35px rgba(26, 115, 232, 0.4);
}

.feature-icon i {
    font-size: 32px;
    color: var(--white);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.3;
}

.feature-card p {
    color: var(--light-text);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.features-note-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
}

.features-note {
    text-align: center;
    background-color: var(--primary-light);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.2);
    font-weight: 600;
    color: var(--primary-dark);
    border: 1px dashed rgba(26, 115, 232, 0.3);
    max-width: 80%;
    margin: 0 auto;
    animation: pulse-light 2s infinite;
}

.features-note i {
    color: var(--primary-color);
    font-size: 20px;
}

@keyframes pulse-light {
    0% {
        box-shadow: 0 5px 15px rgba(26, 115, 232, 0.1);
    }
    50% {
        box-shadow: 0 5px 20px rgba(26, 115, 232, 0.3);
    }
    100% {
        box-shadow: 0 5px 15px rgba(26, 115, 232, 0.1);
    }
}

/* --- Responsive Design for Features --- */
@media (max-width: 1200px) {
    .feature-category-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .feature-category {
        padding: 35px 25px;
    }
}

@media (max-width: 992px) {
    .features {
        padding: 80px 0 100px;
    }
    
    .features-categories {
        gap: 60px;
    }
    
    .feature-category {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .feature-category h3 {
        font-size: 24px;
        margin-bottom: 30px;
        padding: 15px 0;
    }
    
    .feature-category h3 i {
        font-size: 28px;
        margin-left: 12px;
    }
    
    .feature-category-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .feature-icon i {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 60px 0 80px;
    }
    
    .features-categories {
        gap: 40px;
    }
    
    .feature-category {
        padding: 25px 15px;
        border-radius: 12px;
        margin: 0 10px;
    }
    
    .feature-category h3 {
        font-size: 22px;
        margin-bottom: 25px;
        padding: 10px 0;
    }
    
    .feature-category h3::after {
        width: 40px;
        height: 3px;
    }
    
    .feature-category h3 i {
        font-size: 24px;
        margin-left: 10px;
    }
    
    .feature-category-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
        border-radius: 12px;
        margin: 0 5px;
    }
    
    .feature-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
    
    .feature-card h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .features-note {
        padding: 15px;
        border-radius: 20px;
        max-width: 95%;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 10px;
    }
    
    .features-note i {
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .features {
        padding: 50px 0 70px;
    }
    
    .feature-category {
        padding: 20px 10px;
        margin: 0 5px;
    }
    
    .feature-category h3 {
        font-size: 20px;
        margin-bottom: 20px;
        padding: 8px 0;
        line-height: 1.2;
    }
    
    .feature-category h3 i {
        font-size: 22px;
        margin-left: 8px;
        display: block;
        margin-bottom: 5px;
    }
    
    .feature-card {
        padding: 18px 12px;
        margin: 0;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }
    
    .feature-icon i {
        font-size: 22px;
    }
    
    .feature-card h4 {
        font-size: 16px;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .feature-card p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .features-note {
        padding: 12px 15px;
        margin: 0 5px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .feature-category {
        margin: 0;
        border-radius: 8px;
    }
    
    .feature-category h3 {
        font-size: 18px;
        padding: 5px 0;
    }
    
    .feature-card {
        padding: 15px 10px;
        border-radius: 8px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    .feature-card h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .feature-card p {
        font-size: 12px;
    }
}

/* --- Demo Section --- */
.demo {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(rgba(245, 245, 245, 0.95), rgba(245, 245, 245, 0.95)),
    url('https://img.freepik.com/free-vector/wireframing-concept-illustration_114360-4972.jpg');
    background-size: cover;
    background-position: center;
}

.demo .section-header h2 {
    color: var(--primary-dark);
    font-size: 38px;
    margin-bottom: 20px;
}

.demo .section-header p {
    color: var(--light-text);
    font-size: 20px;
    margin-bottom: 40px;
}

.demo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-top: 30px;
}

.demo-text {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

.demo-text:before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.1;
    z-index: -1;
}

.demo-text:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    opacity: 0.1;
    z-index: -1;
}

.demo-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.demo-text h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -8px;
    right: 0;
}

.demo-text p {
    margin-bottom: 25px;
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.7;
}

.demo-devices {
    flex: 1.5;
    position: relative;
    min-height: 450px;
    perspective: 1000px;
}

.device {
    position: absolute;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--white);
    transition: transform 0.5s ease;
}

.device.desktop {
    width: 80%;
    z-index: 1;
    left: 0;
    top: 0;
    border: 15px solid var(--dark-gray);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(5deg);
}

.device.desktop:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.device.desktop img {
    width: 100%;
    display: block;
    border-radius: 2px;
}

.device.mobile {
    width: 30%;
    z-index: 2;
    right: 5%;
    bottom: 5%;
    border: 10px solid var(--dark-gray);
    border-top-width: 20px;
    border-bottom-width: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg);
}

.device.mobile:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.device.mobile:before {
    content: '';
    position: absolute;
    width: 40%;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    top: -13px;
    left: 30%;
    border-radius: 5px;
    z-index: 10;
}

.device.mobile:after {
    content: '';
    position: absolute;
    width: 30%;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    bottom: -13px;
    left: 35%;
    border-radius: 5px;
    z-index: 10;
}

.device.mobile img {
    width: 100%;
    display: block;
    border-radius: 2px;
}

.demo .primary-btn {
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.4s ease;
}

.demo .primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 115, 232, 0.5);
}

.demo-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.demo-buttons .primary-btn,
.demo-buttons .secondary-btn {
    flex: 1;
    text-align: center;
}

@media (max-width: 768px) {
    .demo-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

.demo-features {
    margin: 25px 0;
}

.demo-feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.demo-feature i {
    color: var(--primary-color);
    font-size: 18px;
    margin-left: 10px;
}

.demo-feature span {
    font-size: 16px;
    color: var(--dark-gray);
}

/* Admin Features Styles */
.admin-features {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(26, 115, 232, 0.2);
}

/* Demo Login Box Styles */
.demo-login-box {
    background: linear-gradient(to left, rgba(255, 255, 255, 0.9), rgba(232, 240, 254, 0.9));
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 25px 0;
    border: 1px solid rgba(26, 115, 232, 0.2);
    position: relative;
    overflow: hidden;
}

.demo-login-box:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    opacity: 0.05;
    border-radius: 0 10px 0 100%;
}

.demo-login-box h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.demo-login-box h4 i {
    color: var(--primary-color);
    font-size: 20px;
}

.login-details {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.login-item {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(26, 115, 232, 0.1);
}

.login-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.login-label {
    font-weight: 700;
    min-width: 120px;
    color: var(--dark-gray);
}

.login-value {
    font-family: 'Courier New', monospace;
    background-color: rgba(26, 115, 232, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
    direction: ltr;
    display: inline-block;
}

.login-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dark-gray);
}

.login-note i {
    color: var(--primary-color);
}

@media (max-width: 576px) {
    .login-item {
        flex-direction: column;
    }
    
    .login-label {
        margin-bottom: 5px;
    }
}

.admin-feature {
    padding: 8px 12px;
    font-size: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    border-radius: 6px;
    transition: var(--transition);
}

.admin-feature:hover {
    background-color: rgba(26, 115, 232, 0.1);
}

.admin-feature i {
    margin-left: 10px;
    color: var(--primary-color);
    font-size: 16px;
    min-width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .admin-features {
        grid-template-columns: 1fr;
    }
}

/* --- Workflow Section --- */
.workflow {
    background-color: var(--white);
    position: relative;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 180px;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    transition: var(--transition);
    z-index: 2;
}

.step-number:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    animation: spin 10s linear infinite;
    z-index: -1;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(26, 115, 232, 0.5);
}

.step h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: var(--light-text);
}

.step-connector {
    height: 3px;
    background-color: var(--primary-light);
    flex: 1;
    margin: 0 15px;
    position: relative;
    z-index: 1;
    transform: translateY(-30px);
}

/* --- Pricing Section --- */
.pricing {
    background-color: var(--light-gray);
    position: relative;
    background: linear-gradient(rgba(245, 245, 245, 0.95), rgba(245, 245, 245, 0.95)),
    url('https://img.freepik.com/free-vector/digital-marketing-infographic_52683-9003.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.pricing-plans {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.price-card {
    max-width: 450px;
    flex: 1 1 400px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.price-card.basic-plan {
    border: 1px solid var(--border-color);
}

.plan-label {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--primary-color);
    color: white;
    padding: 5px 40px;
    font-size: 14px;
    transform: rotate(45deg);
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(26, 115, 232, 0.3);
}

.price-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px;
    text-align: center;
    position: relative;
}

.basic-plan .price-header {
    background-color: var(--white);
    color: var(--text-color);
    border-bottom: 2px solid var(--border-color);
}

.basic-plan .price-header h3 {
    color: var(--primary-dark);
}

.price-header h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.amount {
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
}

.basic-plan .amount {
    color: var(--primary-dark);
}

.currency {
    font-size: 24px;
    margin-right: 5px;
    margin-left: 5px;
    align-self: flex-start;
    padding-top: 10px;
}

.period {
    font-size: 18px;
    opacity: 0.8;
    margin-top: 5px;
}

.basic-plan .period {
    color: var(--light-text);
}

.price-features {
    padding: 30px;
}

.price-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.price-features ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.price-features ul li i {
    color: var(--primary-color);
    margin-left: 10px;
    font-size: 20px;
    min-width: 20px;
    text-align: center;
}

.price-features ul li i.highlight {
    color: #f3a046;
    font-size: 22px;
}

.price-features ul li i.not-included {
    color: #e74c3c;
}

.price-card .primary-btn {
    display: block;
    margin: 0 30px 30px;
    text-align: center;
}

.price-card .secondary-btn {
    display: block;
    margin: 0 30px 30px;
    text-align: center;
}

@media (max-width: 992px) {
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }
    
    .price-card {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

/* --- FAQ Section --- */
.faq {
    background-color: var(--white);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: var(--white);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 18px;
    flex: 1;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 20px;
    transition: var(--transition);
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* --- Contact Section --- */
.contact {
    background-color: var(--light-gray);
    position: relative;
    background: linear-gradient(rgba(245, 245, 245, 0.95), rgba(245, 245, 245, 0.95)),
    url('https://img.freepik.com/free-vector/contact-us-concept-landing-page_52683-12860.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.contact .section-header {
    max-width: 700px;
}

.contact .section-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact .section-header p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: flex;
    justify-content: center;
    max-width: 700px;
    margin: 50px auto 0;
}

/* --- WhatsApp Contact Card --- */
.whatsapp-contact {
    width: 100%;
}

.whatsapp-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.whatsapp-card:before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(37, 211, 102, 0.05);
    border-radius: 50%;
    top: -75px;
    right: -75px;
    z-index: 0;
}

.whatsapp-card:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(37, 211, 102, 0.05);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    z-index: 0;
}

.whatsapp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.whatsapp-header {
    background-color: #25d366;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.whatsapp-header:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.whatsapp-header i {
    font-size: 35px;
    margin-left: 15px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-header h3 {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 700;
}

.whatsapp-body {
    padding: 35px;
    position: relative;
    z-index: 1;
}

.whatsapp-body p {
    color: var(--light-text);
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.7;
}

.whatsapp-features {
    background-color: rgba(245, 245, 245, 0.5);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 35px;
    border: 1px solid rgba(37, 211, 102, 0.1);
}

.whatsapp-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.whatsapp-feature:last-child {
    margin-bottom: 0;
}

.whatsapp-feature i {
    width: 40px;
    height: 40px;
    background-color: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25d366;
    font-size: 18px;
    margin-left: 15px;
}

.whatsapp-feature span {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: var(--white);
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    width: 100%;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 25px;
    margin-left: 10px;
}

/* تحسينات للشاشات المتوسطة والصغيرة */
@media (max-width: 768px) {
    .contact {
        padding: 80px 0;
    }
    
    .contact .section-header h2 {
        font-size: 32px;
    }
    
    .contact .section-header p {
        font-size: 18px;
    }
    
    .whatsapp-header {
        padding: 20px;
    }
    
    .whatsapp-header i {
        font-size: 28px;
        width: 55px;
        height: 55px;
        padding: 12px;
    }
    
    .whatsapp-header h3 {
        font-size: 20px;
    }
    
    .whatsapp-body {
        padding: 25px;
    }
    
    .whatsapp-features {
        padding: 20px;
    }
    
    .whatsapp-btn {
        font-size: 16px;
        padding: 14px 20px;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact .section-header h2 {
        font-size: 28px;
    }
    
    .contact .section-header p {
        font-size: 16px;
    }
    
    .whatsapp-header i {
        font-size: 24px;
        width: 45px;
        height: 45px;
        padding: 10px;
    }
    
    .whatsapp-header h3 {
        font-size: 18px;
    }
    
    .whatsapp-body {
        padding: 20px;
    }
    
    .whatsapp-feature i {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .whatsapp-feature span {
        font-size: 14px;
    }
    
    .whatsapp-btn {
        font-size: 15px;
        padding: 12px 20px;
    }
    
    .whatsapp-btn i {
        font-size: 20px;
    }
}

/* --- Footer --- */
footer {
    background-color: #1a2942;
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-logo, .footer-links, .footer-contact {
    margin-bottom: 30px;
}

.footer-logo {
    flex: 1 1 300px;
}

.footer-logo h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-links, .footer-contact {
    flex: 1 1 200px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-right: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact p i {
    margin-left: 15px;
    color: var(--secondary-color);
}

.footer-contact p a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact p a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* --- WhatsApp Float Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* --- Animation Classes --- */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.animate-fade-in.active {
    opacity: 1;
}

.animate-line {
    width: 0;
    transition: width 1.5s ease;
}

.animate-line.active {
    width: 100%;
}

/* --- Media Queries --- */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 40px;
    }
    .hero h2 {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    .hero {
        padding: 150px 0 80px;
    }
    .hero .container {
        flex-direction: column;
    }
    .hero-content {
        padding-left: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .demo-content {
        flex-direction: column;
    }
    .steps {
        flex-direction: column;
        gap: 30px;
    }
    .step-connector {
        width: 3px;
        height: 30px;
        margin: 0;
        transform: translateY(0);
    }
    .contact-content {
        flex-direction: column;
    }
    .demo-devices {
        width: 100%;
        min-height: 500px;
    }
    
    .device.desktop {
        width: 85%;
        left: 50%;
        transform: translateX(-50%) perspective(1000px) rotateY(0deg);
    }
    
    .device.desktop:hover {
        transform: translateX(-50%) perspective(1000px) rotateY(0deg) translateY(-10px);
    }
    
    .device.mobile {
        width: 30%;
        right: 15%;
        bottom: 0;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        z-index: 1001;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        padding: 80px 20px 30px;
        margin-right: 0;
    }
    nav.active {
        right: 0;
    }
    nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul li {
        margin-right: 0;
        margin-bottom: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 15px;
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a.cta-btn {
        display: inline-block;
        margin-top: 10px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero h2 {
        font-size: 20px;
    }
    .section-header h2 {
        font-size: 28px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .demo-devices {
        min-height: 400px;
    }
    
    .device.desktop {
        width: 90%;
    }
    
    .device.mobile {
        width: 35%;
        right: 5%;
    }
    
    .demo-text h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 130px 0 60px;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .hero-buttons a {
        width: 100%;
    }
    .primary-btn, .secondary-btn {
        padding: 12px 20px;
    }
    .footer-content {
        flex-direction: column;
    }
    .price-header {
        padding: 20px;
    }
    .amount {
        font-size: 40px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        left: 20px;
    }
    .demo-devices {
        min-height: 320px;
    }
    
    .device.desktop {
        width: 90%;
        border-width: 10px;
    }
    
    .device.mobile {
        width: 40%;
        border-width: 8px;
        border-top-width: 15px;
        border-bottom-width: 15px;
    }
}

@keyframes spin {
    0% {
        transform: scale(1.2) rotate(0deg);
    }
    100% {
        transform: scale(1.2) rotate(360deg);
    }
}

/* --- LTR Phone Numbers --- */
[dir="ltr"] {
    display: inline-block;
    text-align: left;
}

.contact-item p a[dir="ltr"],
.footer-contact p a[dir="ltr"] {
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
}

/* تحسين مظهر الأرقام في الاتجاه LTR */
.contact-item a[dir="ltr"],
.footer-contact a[dir="ltr"] {
    direction: ltr;
    display: inline-block;
    font-weight: 500;
}

/* تنسيق لزر الواتساب الثابت */
.whatsapp-float:after {
    content: '+970 569 508 218';
    position: absolute;
    left: 70px;
    background: rgba(37, 211, 102, 0.8);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    direction: ltr;
    text-align: left;
}

.whatsapp-float:hover:after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-5px);
}

@media (max-width: 576px) {
    .whatsapp-float:after {
        display: none;
    }
} 