/* صفحة الاستضافة والسيرفر */

/* متغيرات الألوان */
:root {
    --primary-color: #3498db;
    --secondary-color: #9b59b6;
    --accent-color: #2ecc71;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --bg-color: #f8f9fa;
    --border-color: #e9ecef;
}

/* التصميم الأساسي */
.hosting-page {
    background: var(--bg-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
}

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

/* شريط التقدم */
.progress-bar {
    position: fixed;
    top: 0;
    right: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to left, var(--primary-color), var(--secondary-color));
    z-index: 9999;
    transition: width 0.3s ease;
}

/* الهيدر الداخلي */
.page-header {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
    color: white;
}

.hosting-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hosting-particle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hosting-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.host-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatShape 20s linear infinite;
}

.host-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.host-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 50px;
    left: 10%;
    animation-delay: 5s;
}

.host-shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 20%;
    animation-delay: 10s;
}

.server-rack-animation {
    position: absolute;
    bottom: 20px;
    left: 10%;
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.server {
    width: 40px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.server::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.server-lights {
    position: absolute;
    top: 40px;
    left: 5px;
    right: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.light {
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: blinkLight 2s ease-in-out infinite;
}

.light-2 { animation-delay: 0.5s; }
.light-3 { animation-delay: 1s; }
.light-4 { animation-delay: 1.5s; }

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    margin: 0 0 20px 0;
    font-weight: 800;
    line-height: 1.2;
}

.title-word {
    display: inline-block;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.word-1 { animation-delay: 0.2s; }
.word-2 { animation-delay: 0.4s; }
.word-3 { animation-delay: 0.6s; }

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb i {
    font-size: 0.8rem;
}

/* قسم أنواع الاستضافة */
.hosting-types {
    padding: 100px 0;
    background: white;
}

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

.section-title {
    font-size: 2.5rem;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.highlight {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.types-tabs {
    background: var(--bg-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.types-tabs-header {
    display: flex;
    background: var(--dark-color);
    padding: 10px;
    gap: 5px;
}

.type-tab {
    flex: 1;
    padding: 20px 15px;
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
}

.type-tab:hover {
    background: rgba(255, 255, 255, 0.1);
}

.type-tab.active {
    background: white;
    color: var(--primary-color);
}

.type-tab i {
    font-size: 1.5rem;
}

.types-tabs-content {
    padding: 40px;
}

.type-tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.type-tab-pane.active {
    display: block;
}

.type-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.type-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.shared-hosting-visual {
    position: relative;
    width: 250px;
    height: 200px;
}

.server-cluster {
    position: relative;
    width: 100%;
    height: 100%;
}

.server-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--primary-color);
    z-index: 2;
}

.websites {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.website {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
    animation: floatWebsite 6s ease-in-out infinite;
}

.website-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}
.website-2 {
    top: 10%;
    right: 10%;
    animation-delay: 1s;
}
.website-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}
.website-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}
.website-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

.vps-hosting-visual {
    width: 250px;
    height: 200px;
}

.vps-server {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.vps-resources {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.resource {
    display: flex;
    align-items: center;
    gap: 15px;
}

.resource-bar {
    width: 150px;
    height: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.resource-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.cpu .resource-bar { height: 60%; }
.ram .resource-bar { height: 80%; }
.storage .resource-bar { height: 40%; }

.resource span {
    font-weight: 600;
    color: var(--dark-color);
}

.dedicated-hosting-visual {
    width: 250px;
    height: 200px;
    position: relative;
}

.dedicated-server {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.server-components {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
}

.component {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.component:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.cloud-hosting-visual {
    width: 250px;
    height: 200px;
    position: relative;
}

.cloud-cluster {
    width: 100%;
    height: 100%;
    position: relative;
}

.cloud-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    animation: floatCloud 4s ease-in-out infinite;
}

.node-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}
.node-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}
.node-3 {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.cloud-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.connection {
    position: absolute;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.3;
}

.conn-1 {
    top: 35%;
    left: 35%;
    width: 30%;
    transform: rotate(45deg);
}
.conn-2 {
    top: 70%;
    left: 35%;
    width: 30%;
    transform: rotate(-45deg);
}
.conn-3 {
    top: 50%;
    left: 20%;
    width: 60%;
}

.wordpress-hosting-visual {
    width: 250px;
    height: 200px;
}

.wp-dashboard {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wp-header {
    background: #23282d;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wp-logo {
    width: 30px;
    height: 30px;
    background: white;
    color: #23282d;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.wp-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wp-post {
    height: 10px;
    background: linear-gradient(90deg, #f0f0f0, #e0e0e0, #f0f0f0);
    border-radius: 5px;
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.wp-post:nth-child(2) { width: 80%; }
.wp-post:nth-child(3) { width: 60%; }

.type-details h3 {
    font-size: 2rem;
    margin: 0 0 15px 0;
    color: var(--dark-color);
}

.type-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.type-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.feature h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.feature p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.type-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.spec {
    text-align: center;
    padding: 15px;
    background: var(--bg-color);
    border-radius: 10px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.spec:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.spec-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.spec-label {
    font-size: 0.9rem;
    color: #666;
}

.type-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(135deg, var(--bg-color), #f0f0f0);
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.price-range {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.from {
    color: #666;
    font-size: 0.9rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.period {
    color: #666;
    font-size: 0.9rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* قسم باقات الاستضافة */
.hosting-packages {
    padding: 100px 0;
    background: var(--bg-color);
}

.package-category {
    margin-bottom: 80px;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-title {
    font-size: 2rem;
    margin: 0 0 15px 0;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.category-title i {
    color: var(--primary-color);
}

.category-description {
    color: #666;
    font-size: 1.1rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.hosting-package {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.hosting-package.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.hosting-package.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.hosting-package.featured .package-badge {
    background: var(--accent-color);
}

.package-header {
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, var(--dark-color), #34495e);
    color: white;
    text-align: center;
}

.package-name {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.package-price .price {
    font-size: 2.5rem;
    font-weight: bold;
}

.package-price .period {
    font-size: 1rem;
    opacity: 0.8;
}

.package-body {
    padding: 30px;
}

.package-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.spec {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-color);
    border-radius: 10px;
}

.spec i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.spec-details {
    display: flex;
    flex-direction: column;
}

.spec-value {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.spec-label {
    color: #666;
    font-size: 0.9rem;
}

.package-features {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
}

.package-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    border-bottom: 1px dashed var(--border-color);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features .fa-check {
    color: var(--accent-color);
}

.package-features .fa-times {
    color: var(--danger-color);
}

.package-cta {
    margin-top: 20px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* قسم ميزات الاستضافة */
.hosting-features {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    padding: 30px;
    background: var(--bg-color);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.feature-title {
    font-size: 1.3rem;
    margin: 0 0 15px 0;
    color: var(--dark-color);
}

.feature-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* قسم مراكز البيانات */
.data-centers {
    padding: 100px 0;
    background: var(--bg-color);
}

.data-centers-map {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: center;
}

.map-container {
    position: relative;
    height: 400px;
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
}

.world-map {
    width: 100%;
    height: 100%;
    background: #e3f2fd;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.location {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location:hover .location-dot {
    transform: scale(1.5);
}

.location:hover .location-info {
    opacity: 1;
    visibility: visible;
}

.location-usa {
    top: 30%;
    left: 20%;
}

.location-uk {
    top: 25%;
    left: 45%;
}

.location-uae {
    top: 45%;
    left: 60%;
}

.location-saudi {
    top: 50%;
    left: 55%;
}

.location-singapore {
    top: 60%;
    left: 75%;
}

.location-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
    transition: all 0.3s ease;
}

.location-info {
    position: absolute;
    bottom: 100%;
    right: 50%;
    transform: translateX(50%);
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.location-info h4 {
    margin: 0 0 5px 0;
    color: var(--text-color);
    font-size: 16px;
}

.location-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.location-info::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translateX(50%);
    border-width: 8px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.data-center-info {
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    color: white;
}

.info-content h3 {
    margin: 0 0 20px 0;
    font-size: 1.8rem;
}

.info-content p {
    margin: 0 0 20px 0;
    opacity: 0.9;
    line-height: 1.6;
}

.info-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-content li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-content li:last-child {
    border-bottom: none;
}

.info-content li i {
    color: var(--accent-color);
}

/* قسم حالة الخوادم */
.server-status {
    padding: 100px 0;
    background: white;
}

.status-dashboard {
    background: var(--bg-color);
    border-radius: 15px;
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.status-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.status-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-indicator.online {
    background: var(--accent-color);
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

.status-info h4 {
    margin: 0 0 5px 0;
    color: var(--text-color);
    font-size: 1.2rem;
}

.status-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.status-chart {
    background: white;
    border-radius: 10px;
    padding: 30px;
}

.chart-header {
    margin-bottom: 30px;
}

.chart-header h4 {
    margin: 0;
    color: var(--text-color);
    font-size: 1.3rem;
    text-align: center;
}

.chart-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 200px;
    padding: 0 20px;
    position: relative;
}

.chart-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.chart-bar {
    width: 40px;
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    border-radius: 5px 5px 0 0;
    position: relative;
    transition: height 0.3s ease;
}

.chart-bar:hover {
    opacity: 0.8;
}

.chart-bar::after {
    content: attr(data-value);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chart-bar:hover::after {
    opacity: 1;
}

.chart-labels {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding: 0 20px;
}

.chart-labels span {
    color: #666;
    font-size: 0.9rem;
}

/* قسم الأسئلة الشائعة */
.hosting-faq {
    padding: 100px 0;
    background: var(--bg-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* قسم CTA */
.hosting-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    margin: 0 0 20px 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-description {
    margin: 0 0 40px 0;
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.1rem;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--accent-color);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* الفوتر */
footer {
    background: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-slogan {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.3rem;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(-5px);
}

.footer-links .active {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-info {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-extra {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-extra a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-extra a:hover {
    color: white;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* الأزرار الثابتة */
.fixed-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.scroll-top {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.whatsapp-button {
    width: 50px;
    height: 50px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: #128c7e;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* الأنيميشن */
@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    75% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

@keyframes blinkLight {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes floatWebsite {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes floatCloud {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* التجاوب مع الشاشات الصغيرة */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .type-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .type-visual {
        order: -1;
    }
    
    .types-tabs-header {
        flex-direction: column;
    }
    
    .type-tab {
        width: 100%;
    }
    
    .type-features,
    .type-specs {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .hosting-package.featured {
        transform: none;
    }
    
    .hosting-package.featured:hover {
        transform: translateY(-10px);
    }
    
    .data-centers-map {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .status-overview {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .fixed-buttons {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .type-pricing {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}