/* تنسيقات خاصة بصفحة الاستضافة المشتركة */
/* تم نقل إعدادات hero-label--rect إلى ملف hero.css */

/* تنسيقات قسم البطل (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;
}

.hero-text {
    flex: 1;
    padding-left: 2rem;
}

/* تم نقل إعدادات hero-label و hero-features إلى ملف hero.css */

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.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);
}

/* تنسيقات جدول الأسعار */
/* تنسيقات إضافية لجدول الأسعار */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: table;
    table-layout: fixed;
}

.pricing-table thead {
    display: table-header-group;
}

.pricing-table tbody {
    display: table-row-group;
}

.pricing-table tr {
    display: table-row;
}

.pricing-table th, .pricing-table td {
    display: table-cell;
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.pricing-table th {
    background-color: #001e49 !important;
    color: white !important;
    font-weight: bold;
}

.pricing-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.pricing-table tr:hover {
    background-color: #e6f7ff;
}

/* تنسيقات إضافية للأيقونات */
.fa, .fas, .far, .fab {
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fas {
    font-weight: 900;
}

.far {
    font-weight: 400;
}

.fab {
    font-family: "Font Awesome 5 Brands";
}

.fa-envelope:before {
    content: "\f0e0";
}

.fa-phone:before {
    content: "\f095";
}

.fa-map-marker-alt:before {
    content: "\f3c5";
}


.pricing-table th, .pricing-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #001e49;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table .feature-name {
    text-align: right;
    font-weight: bold;
    color: #333;
}

.pricing-table .check {
    color: #4cd964;
    font-size: 1.2rem;
}

.pricing-table .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #001e49;
}

.pricing-table .price-period {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: normal;
}

.pricing-table .cta-cell {
    padding: 1rem;
}

/* تنسيقات قسم المميزات */
.feature-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #001e49;
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.feature-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.feature-title {
    margin-bottom: 1rem;
    color: #001e49;
}

.feature-description {
    color: #666;
}

/* تنسيقات قسم الدعوة للعمل */
.cta-section {
    background-color: #001e49;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-description {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.btn-cta {
    background-color: #ff6b6b;
    color: white;
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
}

/* تنسيقات للشاشات الصغيرة */
@media (max-width: 768px) {
    .new-hero .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-left: 0;
        text-align: center;
    }
    
    .feature-container {
        grid-template-columns: 1fr;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
}

/* تنسيقات بطاقات الأسعار */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.pricing-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 280px;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid #3371b2;
}

.pricing-card h3 {
    color: #001e49;
    margin-bottom: 1.5rem;
    text-align: center;
}

.save-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff6b6b;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.bestseller-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #4cd964;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price-original {
    text-decoration: line-through;
    color: #999;
    text-align: center;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #001e49;
    text-align: center;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.pricing-card p {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.features-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-right: 1.5rem;
}

.features-list li:before {
    content: "✓";
    color: #4cd964;
    position: absolute;
    right: 0;
}

.btn-primary {
    display: block;
    background-color: #3371b2;
    color: white;
    text-align: center;
    padding: 0.8rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #001e49;
    transform: translateY(-3px);
}

/* تنسيقات قسم ميزات الاستضافة */
.features-highlights {
    background-color: #f8f9fa;
    padding: 2rem 0;
}

.features-highlights-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.feature-highlight {
    display: flex;
    align-items: center;
    margin: 0.5rem;
}

.feature-icon {
    background-color: #e6f7ff;
    color: #3371b2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.feature-text {
    font-weight: bold;
    color: #333;
}

@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 350px;
        margin-bottom: 2rem;
    }
    
    .features-highlights-container {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-highlight {
        margin: 0.5rem 0;
    }
}