* {
  margin: 0;
  padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    min-height: 100vh;
    direction: rtl;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.language-toggle {
    position: absolute;
    top: 20px;
    left: 20px;
}

.lang-btn {
    background: linear-gradient(45deg, #4a90e2, #357abd);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
    background: linear-gradient(45deg, #357abd, #2a5298);
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.logo p {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    font-style: italic;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Service Card Styles */
.service-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
  top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #357abd);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: #4a90e2;
}

/* Platform-specific colors */
.instagram::before { background: linear-gradient(90deg, #e1306c, #fd1d1d, #fcb045); }
.tiktok::before { background: linear-gradient(90deg, #000000, #ff0050); }
.facebook::before { background: linear-gradient(90deg, #1877f2, #42a5f5); }
.telegram::before { background: linear-gradient(90deg, #0088cc, #229ed9); }
.whatsapp::before { background: linear-gradient(90deg, #25d366, #128c7e); }
.twitter::before { background: linear-gradient(90deg, #1da1f2, #0d8bd9); }
.boost::before { background: linear-gradient(90deg, #ff6b6b, #ee5a24); }
.verification::before { background: linear-gradient(90deg, #4ecdc4, #44a08d); }

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #2a2a4a;
}

.platform-icon {
    width: 50px;
    height: 50px;
    margin-left: 15px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.service-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content li {
    padding: 12px 0;
    border-bottom: 1px solid #2a2a4a;
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    position: relative;
    padding-right: 20px;
}

.service-content li:last-child {
    border-bottom: none;
}

.service-content li::before {
    content: '▶';
    position: absolute;
    right: 0;
    top: 12px;
    color: #4a90e2;
    font-size: 0.8rem;
}

/* Contact Button Styles */
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(45deg, #4a90e2, #357abd);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    margin-top: 15px;
    width: 100%;
    justify-content: center;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
    background: linear-gradient(45deg, #357abd, #2a5298);
    color: #ffffff;
    text-decoration: none;
}

.contact-btn i {
    font-size: 1.2rem;
}

.contact-info {
    margin-top: 20px;
    padding: 15px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 10px;
    border: 1px solid #4a90e2;
}

.contact-info p {
    margin: 5px 0;
    color: #ffffff;
}

.contact-info strong {
    color: #4a90e2;
}

/* Support & Reviews Section */
.support-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.support-card, .reviews-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid #2a2a4a;
    transition: all 0.3s ease;
}

.support-card:hover, .reviews-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: #4a90e2;
}

.support-header, .reviews-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #2a2a4a;
}

.support-header i, .reviews-header i {
    font-size: 2rem;
    color: #4a90e2;
}

.support-header h2, .reviews-header h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin: 0;
}

.support-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.support-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(45deg, #4a90e2, #357abd);
    color: #ffffff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    min-width: 150px;
}

.support-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
    background: linear-gradient(45deg, #357abd, #2a5298);
    color: #ffffff;
    text-decoration: none;
}

.review-item {
    background: rgba(74, 144, 226, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid #2a2a4a;
    transition: all 0.3s ease;
}

.review-item:hover {
    background: rgba(74, 144, 226, 0.2);
    transform: translateX(-5px);
}

.review-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-item p {
    color: #e0e0e0;
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.reviewer {
    color: #4a90e2;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    text-align: center;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid #2a2a4a;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(45deg, #4a90e2, #357abd);
    color: #ffffff;
    text-decoration: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.5);
    background: linear-gradient(45deg, #357abd, #2a5298);
}

.contact-link i {
    font-size: 1.5rem;
}

.language-info {
    margin-top: 20px;
    padding: 15px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 10px;
    border: 1px solid #4a90e2;
    display: inline-block;
}

.language-info p {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
}

/* Footer Styles */
.footer {
    background: linear-gradient(145deg, #0a0a0a, #1a1a2e);
    border-top: 2px solid #2a2a4a;
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
}

.footer-content p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .language-toggle {
        position: static;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .lang-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .logo h1 {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .logo p {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        padding: 15px;
        margin-bottom: 10px;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .platform-icon {
        width: 40px;
        height: 40px;
        margin: 0;
    }
    
    .service-header h2 {
        font-size: 1.4rem;
        margin: 0;
    }
    
    .service-content li {
        font-size: 0.9rem;
        padding: 8px 0;
        line-height: 1.5;
    }
    
    .contact-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        margin-top: 12px;
    }
    
    .support-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .support-card, .reviews-card {
        padding: 20px;
    }
    
    .support-header, .reviews-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .support-header i, .reviews-header i {
        font-size: 1.5rem;
    }
    
    .support-header h2, .reviews-header h2 {
        font-size: 1.4rem;
    }
    
    .support-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .support-link {
        padding: 10px 16px;
        font-size: 0.9rem;
        min-width: auto;
    }
    
    .review-item {
        padding: 15px;
        margin-bottom: 10px;
    }
    
    .review-item p {
        font-size: 0.9rem;
    }
    
    .contact-section {
        padding: 25px 15px;
    }
    
    .contact-section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .footer {
        margin-top: 30px;
        padding: 15px 0;
    }
    
    .footer-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 8px;
    }
    
    .header {
        padding: 20px 0;
        margin-bottom: 20px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    
    .logo p {
        font-size: 1rem;
    }
    
    .lang-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 12px;
        margin-bottom: 8px;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .platform-icon {
        width: 35px;
        height: 35px;
        margin: 0;
    }
    
    .service-header h2 {
        font-size: 1.2rem;
    }
    
    .service-content li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    
    .contact-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        margin-top: 10px;
    }
    
    .support-card, .reviews-card {
        padding: 15px;
    }
    
    .support-header h2, .reviews-header h2 {
        font-size: 1.2rem;
    }
    
    .support-link {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .review-item {
        padding: 12px;
        margin-bottom: 8px;
    }
    
    .review-item p {
        font-size: 0.85rem;
    }
    
    .contact-section {
        padding: 20px 12px;
    }
    
    .contact-section h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .contact-link {
        padding: 10px 16px;
        font-size: 0.8rem;
        max-width: 250px;
    }
    
    .footer {
        margin-top: 20px;
        padding: 12px 0;
    }
    
    .footer-content p {
        font-size: 0.75rem;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .logo h1 {
        font-size: 1.6rem;
    }
    
    .service-card {
        padding: 10px;
    }
    
    .service-content li {
        font-size: 0.8rem;
    }
    
    .contact-btn, .support-link, .contact-link {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #4a90e2, #357abd);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #357abd, #2a5298);
}