/*
Theme Name: SKYKALAK ISP
Theme URI: https://skykalak-isp.com
Author: SKYKALAK Team
Author URI: https://skykalak-isp.com
Description: قالب احترافي لشركة SKYKALAK لخدمات الإنترنت
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: skykalak
*/

:root {
    --deep-space: #0a0e27;
    --cosmic-blue: #1a237e;
    --sky-blue: #00b4d8;
    --neon-cyan: #00ffff;
    --electric-green: #39ff14;
    --star-white: #f0f4f8;
    --shadow-glow: rgba(0, 180, 216, 0.3);
}

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

body {
    font-family: 'Cairo', sans-serif;
    background: var(--deep-space);
    color: var(--star-white);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(26, 35, 126, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 180, 216, 0.3) 0%, transparent 50%),
        var(--deep-space);
    animation: backgroundPulse 20s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 180, 216, 0.2);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--electric-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--shadow-glow);
    letter-spacing: 2px;
    animation: logoGlow 3s ease-in-out infinite;
    text-decoration: none;
}

@keyframes logoGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--star-white);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--electric-green));
    transition: width 0.4s ease;
}

.nav-links a:hover,
.nav-links a.current,
.nav-links a.active {
    color: var(--neon-cyan);
}

.nav-links a:hover::after,
.nav-links a.current::after,
.nav-links a.active::after {
    width: 100%;
    right: auto;
    left: 0;
}

/* Mobile Menu Button - زر القائمة للموبايل */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-button span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-button:hover span {
    background: var(--electric-green);
}

.mobile-menu-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Styles - أنماط قائمة الموبايل */
@media (max-width: 968px) {
    .mobile-menu-button {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 0;
        gap: 0;
        border-left: 2px solid rgba(0, 180, 216, 0.3);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        transition: right 0.4s ease;
        overflow-y: auto;
    }
    
    .nav-links.mobile-active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 180, 216, 0.1);
    }
    
    .nav-links a {
        display: block;
        padding: 1.2rem 2rem;
        width: 100%;
        text-align: right;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-links a:hover,
    .nav-links a.current {
        background: rgba(0, 180, 216, 0.1);
        border-right: 4px solid var(--neon-cyan);
    }
}


/* Page Header */
.page-header {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(26, 35, 126, 0.2), transparent);
}

.page-header-content {
    max-width: 800px;
    animation: fadeIn 1s ease-out;
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--electric-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.5rem;
    color: rgba(240, 244, 248, 0.8);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--star-white), var(--sky-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .highlight {
    display: block;
    font-size: 5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--electric-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(240, 244, 248, 0.8);
    margin-bottom: 2.5rem;
    animation: fadeIn 1s ease-out 0.3s both;
}

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

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

.btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Cairo', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sky-blue), var(--neon-cyan));
    color: var(--deep-space);
    box-shadow: 0 10px 40px var(--shadow-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--star-white);
    border: 2px solid var(--sky-blue);
}

.btn-secondary:hover {
    background: var(--sky-blue);
    color: var(--deep-space);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-glow);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.speed-indicator {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-ring {
    position: absolute;
    border: 2px solid rgba(0, 180, 216, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-ring:nth-child(1) {
    width: 90%;
    height: 90%;
    animation-duration: 15s;
}

.orbit-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    animation-duration: 20s;
    animation-direction: reverse;
}

.orbit-ring:nth-child(3) {
    width: 50%;
    height: 50%;
    animation-duration: 25s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.speed-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--electric-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 10;
    text-align: center;
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.speed-number span {
    display: block;
    font-size: 2rem;
    margin-top: 0.5rem;
}

/* Features Section */
.features {
    padding: 6rem 5%;
    background: linear-gradient(180deg, transparent, rgba(26, 35, 126, 0.1), transparent);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--star-white), var(--sky-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: rgba(26, 35, 126, 0.2);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 60px var(--shadow-glow);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

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

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.feature-card p {
    color: rgba(240, 244, 248, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Stats Section */
.stats-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.3), rgba(0, 180, 216, 0.1));
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--electric-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.3rem;
    color: rgba(240, 244, 248, 0.8);
}

/* CTA Section */
.cta-section {
    padding: 8rem 5%;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(57, 255, 20, 0.1));
    text-align: center;
}

.cta-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--electric-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.5rem;
    color: rgba(240, 244, 248, 0.8);
    margin-bottom: 2.5rem;
}

/* Packages */
.packages,
.packages-page {
    padding: 6rem 5%;
}

.packages-container {
    max-width: 1400px;
    margin: 0 auto;
}

.package-category {
    margin-bottom: 6rem;
}

.category-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-title .icon {
    font-size: 3.5rem;
}

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

.package-card {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.3), rgba(0, 180, 216, 0.1));
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, var(--sky-blue), var(--neon-cyan));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
}

.package-card:hover::before {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px var(--shadow-glow);
}

.package-card.featured {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(57, 255, 20, 0.1));
    border-color: var(--electric-green);
    transform: scale(1.05);
}

.package-card.business {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
}

.package-card.gaming {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--electric-green));
    color: var(--deep-space);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.package-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.package-price {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, var(--star-white), var(--sky-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.package-price span {
    font-size: 1.5rem;
}

.package-speed {
    font-size: 1.3rem;
    color: var(--electric-green);
    margin-bottom: 2rem;
    font-weight: 700;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 180, 216, 0.2);
    color: rgba(240, 244, 248, 0.9);
    font-size: 1.1rem;
}

.package-features li::before {
    content: '✓';
    color: var(--electric-green);
    font-weight: 900;
    margin-left: 1rem;
}

/* Comparison Table */
.comparison-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, transparent, rgba(26, 35, 126, 0.1));
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 3rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 35, 126, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 180, 216, 0.2);
}

.comparison-table th {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.3), rgba(57, 255, 20, 0.1));
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--neon-cyan);
}

.comparison-table tbody tr:hover {
    background: rgba(0, 180, 216, 0.1);
}

/* FAQ Section */
.faq-section,
.faq-support {
    padding: 6rem 5%;
}

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

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

.faq-item {
    background: rgba(26, 35, 126, 0.2);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px var(--shadow-glow);
}

.faq-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.faq-item p {
    color: rgba(240, 244, 248, 0.8);
    line-height: 1.8;
}

/* FAQ Accordion */
.faq-accordion {
    margin-top: 3rem;
}

.faq-item-accordion {
    background: rgba(26, 35, 126, 0.2);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--star-white);
    font-family: 'Cairo', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--neon-cyan);
}

.faq-toggle {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-cyan);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 2rem;
}

.faq-item-accordion.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: rgba(240, 244, 248, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* About Page - Story Grid */
.about-story {
    padding: 6rem 5%;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-content {
    animation: fadeInRight 1s ease-out;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(240, 244, 248, 0.9);
    margin-bottom: 1.5rem;
}

.story-visual {
    animation: fadeInLeft 1s ease-out;
}

.timeline {
    position: relative;
    padding-right: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--neon-cyan), var(--electric-green));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-right: 3rem;
}

.timeline-year {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--electric-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -2.7rem;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--neon-cyan);
}

.timeline-content h3 {
    color: var(--sky-blue);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: rgba(240, 244, 248, 0.8);
    line-height: 1.6;
}

/* Vision Mission */
.vision-mission {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.2), rgba(0, 180, 216, 0.1));
}

.vm-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.vm-card {
    background: rgba(26, 35, 126, 0.3);
    border: 2px solid rgba(0, 180, 216, 0.3);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 60px var(--shadow-glow);
}

.vm-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.vm-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
}

.vm-card p {
    color: rgba(240, 244, 248, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Infrastructure */
.infrastructure {
    padding: 6rem 5%;
}

.infra-container {
    max-width: 1400px;
    margin: 0 auto;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.infra-card {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.3), rgba(0, 180, 216, 0.1));
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.infra-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 60px var(--shadow-glow);
}

.infra-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.infra-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.infra-card p {
    color: rgba(240, 244, 248, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.infra-stat {
    border-top: 2px solid rgba(0, 180, 216, 0.3);
    padding-top: 1.5rem;
    text-align: center;
}

.infra-stat .stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--electric-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.infra-stat .stat-label {
    font-size: 1rem;
    color: rgba(240, 244, 248, 0.7);
}

/* Team Section */
.team-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, transparent, rgba(26, 35, 126, 0.1));
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.team-card {
    background: rgba(26, 35, 126, 0.2);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 60px var(--shadow-glow);
}

.team-avatar {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.team-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--electric-green);
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-bio {
    color: rgba(240, 244, 248, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Achievements */
.achievements {
    padding: 6rem 5%;
}

.achievements-container {
    max-width: 1400px;
    margin: 0 auto;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.achievement-card {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(57, 255, 20, 0.1));
    border: 2px solid rgba(0, 180, 216, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.achievement-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--electric-green);
    box-shadow: 0 20px 60px rgba(57, 255, 20, 0.3);
}

.achievement-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.achievement-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--electric-green);
    margin-bottom: 1rem;
}

.achievement-card p {
    color: rgba(240, 244, 248, 0.8);
    line-height: 1.6;
}

/* Coverage Section */
.coverage-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.2), rgba(0, 180, 216, 0.1));
}

.coverage-container {
    max-width: 1400px;
    margin: 0 auto;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.coverage-text h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
}

.coverage-list {
    list-style: none;
}

.coverage-list li {
    padding: 1rem 0;
    font-size: 1.2rem;
    color: rgba(240, 244, 248, 0.9);
    border-bottom: 1px solid rgba(0, 180, 216, 0.2);
}

.coverage-visual {
    position: relative;
}

.coverage-map {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(57, 255, 20, 0.05));
    border: 2px solid rgba(0, 180, 216, 0.3);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.coverage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 40% 30%, rgba(0, 255, 255, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 60% 50%, rgba(57, 255, 20, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 20% 20%, rgba(0, 180, 216, 0.2) 0%, transparent 40%);
    animation: coveragePulse 5s ease-in-out infinite;
}

@keyframes coveragePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.map-marker {
    position: absolute;
    z-index: 10;
}

.marker-dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--neon-cyan);
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.marker-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 14, 39, 0.9);
    color: var(--neon-cyan);
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Support Page Styles */
.contact-methods {
    padding: 4rem 5%;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.3), rgba(0, 180, 216, 0.1));
    border: 2px solid rgba(0, 180, 216, 0.3);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 60px var(--shadow-glow);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.contact-detail {
    font-size: 1.2rem;
    color: var(--star-white);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-hours {
    color: rgba(240, 244, 248, 0.7);
    margin-bottom: 1.5rem;
}

/* Support Form */
.support-form-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, transparent, rgba(26, 35, 126, 0.1));
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
}

.support-form {
    background: rgba(26, 35, 126, 0.2);
    border: 2px solid rgba(0, 180, 216, 0.3);
    border-radius: 25px;
    padding: 3rem;
    margin-top: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(0, 180, 216, 0.3);
    border-radius: 10px;
    background: rgba(10, 14, 39, 0.5);
    color: var(--star-white);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px var(--shadow-glow);
}

.form-group textarea {
    resize: vertical;
}

/* Service Centers */
.service-centers {
    padding: 6rem 5%;
}

.centers-container {
    max-width: 1400px;
    margin: 0 auto;
}

.centers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.center-card {
    background: rgba(26, 35, 126, 0.2);
    border: 2px solid rgba(0, 180, 216, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.center-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 60px var(--shadow-glow);
}

.center-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
}

.center-address,
.center-hours,
.center-phone {
    color: rgba(240, 244, 248, 0.9);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

/* Quick Links */
.quick-links-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.2), rgba(0, 180, 216, 0.1));
}

.quick-links-container {
    max-width: 1400px;
    margin: 0 auto;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.quick-link-card {
    background: rgba(26, 35, 126, 0.3);
    border: 2px solid rgba(0, 180, 216, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-decoration: none;
    color: var(--star-white);
    transition: all 0.4s ease;
    display: block;
}

.quick-link-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 60px var(--shadow-glow);
}

.quick-link-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.quick-link-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.quick-link-card p {
    color: rgba(240, 244, 248, 0.8);
    line-height: 1.6;
}

/* App Download */
.app-download {
    padding: 6rem 5%;
}

.app-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.app-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--electric-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.app-content p {
    font-size: 1.3rem;
    color: rgba(240, 244, 248, 0.8);
    margin-bottom: 3rem;
}

.app-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: rgba(26, 35, 126, 0.3);
    border: 2px solid rgba(0, 180, 216, 0.3);
    border-radius: 15px;
    text-decoration: none;
    color: var(--star-white);
    transition: all 0.4s ease;
}

.app-button:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px var(--shadow-glow);
    transform: translateY(-5px);
}

.app-icon {
    font-size: 3rem;
}

.app-text {
    font-size: 0.9rem;
    color: rgba(240, 244, 248, 0.7);
    text-align: right;
}

.app-store {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neon-cyan);
}

/* Footer */
footer {
    background: rgba(10, 14, 39, 0.95);
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(0, 180, 216, 0.2);
    margin-top: 6rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
}

.footer-section p,
.footer-section a {
    color: rgba(240, 244, 248, 0.7);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
    display: block;
}

.footer-section a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 180, 216, 0.2);
    color: rgba(240, 244, 248, 0.5);
}

/* WordPress Specific */
.wp-block-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-glow);
}

/* Responsive Design - محسّن لجميع الأجهزة */

/* Large Desktop - شاشات كبيرة جداً */
@media (min-width: 1920px) {
    .nav-container,
    .hero-content,
    .features-container,
    .packages-container,
    .about-container {
        max-width: 1600px;
    }
}

/* Desktop - لابتوب كبير */
@media (max-width: 1440px) {
    .hero-text h1 {
        font-size: 4rem;
    }
    
    .hero-text .highlight {
        font-size: 4.5rem;
    }
}

/* Laptop - لابتوب عادي */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .hero-text .highlight {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    nav {
        padding: 1.2rem 4%;
    }
}

/* Tablet Landscape - تابلت أفقي */
@media (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 3.2rem;
    }
    
    .hero-text .highlight {
        font-size: 3.8rem;
    }
    
    .package-card,
    .feature-card {
        padding: 2rem;
    }
    
    .nav-links {
        gap: 2rem;
    }
    
    .nav-links a {
        font-size: 0.95rem;
    }
}

/* Tablet Portrait - تابلت عمودي */
@media (max-width: 968px) {
    .hero-content,
    .story-grid,
    .coverage-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text .highlight {
        font-size: 3.5rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }
    
    /* قائمة موبايل */
    .mobile-menu-button {
        display: block !important;
    }

    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .speed-indicator {
        max-width: 400px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        padding-right: 0;
    }

    .timeline-year::after {
        display: none;
    }
    
    .vm-grid,
    .team-grid,
    .infra-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    nav {
        padding: 1rem 3%;
    }
    
    .logo {
        font-size: 1.8rem;
    }
}

/* Large Mobile - موبايل كبير */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 4% 3rem;
        min-height: auto;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-text .highlight {
        font-size: 3.2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .page-header {
        min-height: 30vh;
        padding: 6rem 4% 3rem;
    }
    
    .packages-grid,
    .features-grid,
    .contact-grid,
    .centers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .package-card,
    .feature-card,
    .contact-card {
        margin: 0 auto;
        max-width: 500px;
        width: 100%;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .achievement-card,
    .quick-link-card {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

/* Mobile - موبايل عادي */
@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text .highlight {
        font-size: 3rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .packages-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    nav {
        padding: 0.8rem 3%;
    }
    
    .feature-icon {
        font-size: 3rem;
    }
    
    .contact-icon {
        font-size: 3rem;
    }
    
    .package-price {
        font-size: 3rem;
    }
    
    .package-speed {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 5rem 3% 2rem;
    }
    
    .features,
    .packages,
    .packages-page {
        padding: 4rem 3%;
    }
    
    .support-form {
        padding: 2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* منع التكبير التلقائي في iOS */
    }
}

/* Small Mobile - موبايل صغير */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-text .highlight {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .package-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .package-price {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .feature-icon,
    .contact-icon,
    .vm-icon {
        font-size: 2.5rem;
    }
    
    .category-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Extra Small Devices - أجهزة صغيرة جداً */
@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text .highlight {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    nav {
        padding: 0.6rem 2%;
    }
}

/* Landscape Orientation - الوضع الأفقي للموبايل */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 6rem 3% 2rem;
    }
    
    .page-header {
        min-height: auto;
        padding: 5rem 3% 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text .highlight {
        font-size: 3rem;
    }
}

/* Print Styles - للطباعة */
@media print {
    .background-animation,
    .stars,
    nav,
    .cta-section,
    footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero,
    .features,
    .packages-page {
        page-break-inside: avoid;
    }
}
