.features-highlights {
    background-color: #f8f9fa;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.features-highlights-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.feature-highlight {
    display: flex;
    align-items: center;
    margin: 0.5rem 1rem;
}

.feature-icon {
    background-color: #e6f7ff;
    color: #0056b3;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    font-weight: bold;
}

.feature-text {
    font-size: 1.1rem;
    color: #333;
}

.pricing-section {
    padding: 4rem 2rem;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1400px;
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--color-accent);
    transform: scale(1.05);
}

.save-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #ffd700;
    color: #000;
    padding: 0.5rem 1rem;
    font-weight: bold;
    font-size: 0.85rem;
    z-index: 1;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pricing-card:hover .price::before,
.pricing-card:hover .spec-label,
.pricing-card:hover .spec-value {
    color: #fff !important;
}
.bestseller-badge,
.best-value-badge {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    height: 32px !important;
    width: 120px !important;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #11c7e6 !important;
    color: white;
    border-radius: 0 0 1rem 1rem;
    font-weight: bold;
    font-size: 0.9rem;
    box-sizing: border-box;
}
/* Removed specific background for .best-value-badge as it's now common */

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #3371b2;
    margin: 1.5rem 0;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: right;
}

.features-list li {
    margin: 1rem 0;
    padding-right: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.features-accordion {
    max-width: 1200px;
    margin: 3rem auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background-color: white;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #f8f9fa;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--color-primary);
}

.accordion-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 2rem;
}

.accordion-item.active .accordion-content {
    padding: 1rem 2rem 2rem;
}

.features-list-detailed {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list-detailed li {
    margin-bottom: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    text-align: right;
}

.features-list-detailed li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.features-list-detailed strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.features-list-detailed p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* تنسيقات قسم البطل (Hero Section) */
.new-hero {
    background-color: #001e49;
    color: white;
    padding: 4rem 2rem;
    border-radius: 0;
}

.new-hero .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    padding-left: 2rem;
}

.hero-label {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.hero-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.check-icon {
    color: #4cd964;
    margin-left: 0.5rem;
    font-weight: bold;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.os-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.os-icon {
    background-color: white;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button {
    background-color: #333333;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #3371b2;
    transform: translateY(-3px);
}

.secondary-button {
    background-color: #3371b2;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: #333333;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .new-hero .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-left: 0;
        text-align: center;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .features-highlights-container {
        flex-direction: column;
    }
    
    .feature-highlight {
        margin: 0.5rem 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}


/* تنسيقات عامة للصفحة */
.configure-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Cairo', sans-serif;
}

.configure-header {
    text-align: center;
    margin-bottom: 4rem;
}

.configure-header h1 {
    color: #3371b2;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.configure-header p {
    color: #666;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

.configure-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.configure-options {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.configure-summary {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 2rem;
}

.option-group {
    margin-bottom: 3rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 3rem;
}

.option-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #3371b2;
    position: relative;
    padding-right: 1.5rem;
}

.option-title::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 25px;
    background-color: #3371b2;
    border-radius: 3px;
}

.option-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

/* تنسيقات خيارات نظام التشغيل */
.os-options, .control-panel-options, .option-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.option-item {
    flex: 1 0 calc(33.333% - 1rem);
    min-width: 200px;
    padding: 2rem;
    border: 2px solid #eee;
    border-radius: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

.option-item:hover {
    border-color: #3371b2;
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background-color: #f8f9fa;
}

.option-item.selected {
    border-color: #3371b2;
    background-color: rgba(51, 113, 178, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.option-name {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.option-price {
    color: #666;
    font-size: 0.9rem;
}

/* أنماط جدول الأسعار الأفقي */
.pricing-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-item {
    border: 2px solid #eee;
    border-radius: 0.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
    background-color: rgba(0, 86, 179, 0.1);
    color: #333;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.pricing-item.selected {
    border-color: var(--color-primary);
    background-color: rgba(0, 86, 179, 0.1);
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pricing-item-name {
    font-weight: bold;
    flex: 1;
}

.pricing-item-specs {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.pricing-item-price {
    font-weight: bold;
    color: #3371b2;
    font-size: 1.2rem;
}

/* تنسيقات ملخص الطلب */
.summary-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    text-align: center;
    color: #3371b2;
    position: relative;
    padding-bottom: 1rem;
}

.summary-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #3371b2;
    border-radius: 1.5px;
}

.summary-items {
    margin-bottom: 3rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #eee;
}

.summary-item-name {
    color: #555;
    font-weight: 500;
    font-size: 1.1rem;
}

.summary-item-value {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2.5rem 0;
    padding-top: 1.5rem;
    border-top: 2px solid #3371b2;
}

.summary-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cta-button {
    background: #3371b2;
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-align: center;
}

.cta-button:hover {
    background: #265a9a;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.secondary-button {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    padding: 1.2rem 2rem;
    border-radius: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-align: center;
}

.secondary-button:hover {
    background: #eee;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* تنسيقات النافذة المنبثقة */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* تنسيقات للشاشات الصغيرة */
@media (max-width: 768px) {
    .configure-grid {
        grid-template-columns: 1fr;
    }
    
    .configure-summary {
        position: static;
        margin-top: 2rem;
    }
    
    .pricing-item, .option-item {
        flex: 1 0 calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    .pricing-item, .option-item {
        flex: 1 0 100%;
    }
}

/* تنسيقات القائمة العلوية والرئيسية */
.top-header {
    background-color: #001e49;
    padding: 0.8rem 2rem;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.top-nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-nav-links li {
    margin-right: 1.5rem;
}

.top-nav-links li:last-child {
    margin-right: 0;
}

.top-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.top-nav-links a:hover {
    color: #11c7e6;
}

.main-header {
    background-color: #3371b2;
    padding: 0.8rem 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
}

.main-nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.main-nav-links li {
    margin: 0 1rem;
}

.main-nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.main-nav-links a:hover {
    color: #ffd700;
}