/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.lang-btn {
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.lang-btn:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* Language-specific button colors */
.lang-btn[href*="lang=ar"] {
    background: rgba(220, 38, 127, 0.1);
    color: #dc267f;
    border-color: rgba(220, 38, 127, 0.3);
}

.lang-btn[href*="lang=ar"]:hover {
    background: rgba(220, 38, 127, 0.2);
    border-color: #dc267f;
}

.lang-btn[href*="lang=ar"].active {
    background: #dc267f;
    color: white;
    border-color: #dc267f;
}

.lang-btn[href*="lang=en"] {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.3);
}

.lang-btn[href*="lang=en"]:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
}

.lang-btn[href*="lang=en"].active {
    background: #22c55e;
    color: white;
    border-color: #22c55e;
}

.lang-btn[href*="lang=es"] {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}

.lang-btn[href*="lang=es"]:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
}

.lang-btn[href*="lang=es"].active {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
}

.lang-btn[href*="lang=tr"] {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.3);
}

.lang-btn[href*="lang=tr"]:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: #a855f7;
}

.lang-btn[href*="lang=tr"].active {
    background: #a855f7;
    color: white;
    border-color: #a855f7;
}

/* Main Container */
.main-container {
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    text-align: center;
    padding: 40px 0;
    color: white;
}

.coming-soon-badge {
    margin-bottom: 20px;
}

.badge-text {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.company-name {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Content */
.content {
    background: white;
    border-radius: 20px 20px 0 0;
    padding: 60px 0;
    margin-top: 40px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.content-section {
    margin-bottom: 50px;
    padding: 0 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto;
}

.section-content ul {
    margin: 20px 0;
    padding-right: 20px;
}

.section-content li {
    margin-bottom: 10px;
    position: relative;
}

.section-content li::marker {
    color: #667eea;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 30px 0;
    text-align: center;
    color: #666;
    border-top: 1px solid #e9ecef;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .language-switcher {
        padding: 8px 0;
    }
    
    .lang-buttons {
        gap: 8px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .main-container {
        padding-top: 70px;
    }
    
    .header {
        padding: 30px 0;
    }
    
    .company-name {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .content {
        padding: 40px 0;
        margin-top: 20px;
    }
    
    .content-section {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-content {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .lang-buttons {
        gap: 6px;
    }
    
    .lang-btn {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-content {
        font-size: 0.95rem;
    }
}

/* RTL Support for Arabic */
[dir="rtl"] .section-content {
    text-align: right;
}

[dir="rtl"] .section-content ul {
    padding-right: 0;
    padding-left: 20px;
}

[dir="rtl"] .lang-buttons {
    direction: ltr;
}

/* Animation for smooth transitions */
.content-section {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects */
.section-title:hover {
    color: #764ba2;
    transition: color 0.3s ease;
}

/* Print styles */
@media print {
    .language-switcher {
        display: none;
    }
    
    .main-container {
        padding-top: 0;
    }
    
    body {
        background: white;
    }
    
    .content {
        box-shadow: none;
        border-radius: 0;
    }
}
