/* 404 Error Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.error-container {
    text-align: center;
    max-width: 600px;
}
.error-code {
    font-size: 150px;
    font-weight: 800;
    color: #F68B1E;
    line-height: 1;
    text-shadow: 4px 4px 0 rgba(0,0,0,0.1);
}
.error-icon {
    font-size: 80px;
    color: #666;
    margin: 20px 0;
}
.error-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}
.error-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}
.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: #F68B1E;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(246, 139, 30, 0.3);
}
.btn-home:hover {
    background: #E67A0C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 139, 30, 0.4);
}
.search-box {
    margin-top: 30px;
    display: flex;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.search-box input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 50px 0 0 50px;
    font-size: 14px;
    font-family: 'Cairo', sans-serif;
    outline: none;
}
.search-box input:focus {
    border-color: #F68B1E;
}
.search-box button {
    padding: 15px 25px;
    background: #F68B1E;
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: background 0.3s;
}
.search-box button:hover {
    background: #E67A0C;
}

/* Language Toggle */
.lang-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 1);
}

.lang-btn.active {
    border-color: #F68B1E;
    background: #F68B1E;
    color: white;
}

/* Show/hide based on selected language */
.lang-ar .lang-en {
    display: none;
}

.lang-en .lang-ar {
    display: none;
}
